Page is crashing my mobile chrome.
Show HN: Container Use for Agents
11–18 of 18 posts
Re: Show HN: Container Use for Agents
#12Earlier quoted context omitted.
Seems odd that the LLM is so clever it can write programs to drive any API. But so dumb that it needs a new special purpose protocol proxy to access anything behind such an API...
It’s about resilience. LLMs are prone to hallucinations. Although they can be very intelligent, they don’t have 100% correct output unaided. The protocol helps increase the resilience of the output so that there’s more of a guarantee that the LLM will stay within the lines you’ve drawn around it.
Re: Show HN: Container Use for Agents
#13Re: Show HN: Container Use for Agents
#14Re: Show HN: Container Use for Agents
#15Very cool that this runs as a MCP server, very cool demo
Seems odd that the LLM is so clever it can write programs to drive any API. But so dumb that it needs a new special purpose protocol proxy to access anything behind such an API...
It is not, name one software that has a LLM generating code on the fly to call APIs. Why do people have this delusion?
Re: Show HN: Container Use for Agents
#16Earlier quoted context omitted.
Seems odd that the LLM is so clever it can write programs to drive any API. But so dumb that it needs a new special purpose protocol proxy to access anything behind such an API...
> LLM is so clever it can write programs to drive any API It is not, name one software that has a LLM generating code on the fly to call APIs. Why do people have this delusion?
If you tell a model it can use some syntax, e.g. `:: foo(arg1, arg2) ::`, to cause the runtime to call an API, and then, based on the context of the conversation, the model outputs `:: get_current_weather("Poland/Warsaw")`, that is "generating code on the fly to all APIs". How `:: get_current_weather("Poland/Warsaw")` gets turned into a bunch of cURL invocations against e.g. OpenWeather API, is an implementation detail of the runtime.
Re: Show HN: Container Use for Agents
#17Earlier quoted context omitted.
Seems odd that the LLM is so clever it can write programs to drive any API. But so dumb that it needs a new special purpose protocol proxy to access anything behind such an API...
> LLM is so clever it can write programs to drive any API It is not, name one software that has a LLM generating code on the fly to call APIs. Why do people have this delusion?
Re: Show HN: Container Use for Agents
#18Earlier quoted context omitted.
> LLM is so clever it can write programs to drive any API It is not, name one software that has a LLM generating code on the fly to call APIs. Why do people have this delusion?
This is basically just function calling?
Surprisingly many people say this. I essentially ask them if they have seen a non-toy product that works like that, because everything is tool calling afak.