Agent tutorial
We have a comprehensive, step-by-step guide to building agents in LlamaIndex.TS that we recommend to learn what agents are and how to build them for production. But building a basic agent is simple:
Set up
In a new folder:
Run agent
Create the file example.ts
. This code will:
- Create two tools for use by the agent:
- A
sumNumbers
tool that adds two numbers - A
divideNumbers
tool that divides numbers
- A
- Give an example of the data structure we wish to generate
- Prompt the LLM with instructions and the example, plus a sample transcript
To run the code:
You should expect output something like:
Edit on GitHub
Last updated on