How do we approach agents that have to be deployed because there’s no way a user can run a filesystem on their computers, and we need to use tools like scripts?
My guess is that I have to do 2 passes:
- Pass 1: get the question and identify the “parameters” of the script
- Use the response from the Llm to run a script, python or typescript function
- Pass 2: use the output of the function to make it natural language format
I would pass our identity + context + constraints in the Llm prompt to each of the passes.
But doesn’t this looks very similar to complicated frameworks??