A simple project for enabling LLM agents to use tools.
-
Install Anaconda:
Download Anaconda from https://www.anaconda.com/. -
Create a Virtual Environment:
conda create -n agent_env python=3.11 pip
-
Activate the Virtual Environment:
conda activate agent_env
-
Clone the Repo:
git clone https://github.com/john-adeojo/use-tools.git
-
Navigate to the Repo:
cd /path/to/your-repo/use-tools
-
Install Requirements:
pip install -r requirements.txt
- Open the
config.yaml
:nano config.yaml
- OpenAI API Key: Get it from https://openai.com/
-
Download Ollama: Download https://ollama.com/download
-
Download an Ollama Model:
curl http://localhost:11434/api/pull -d "{\"name\": \"llama3:instruct\"}"
Ollama API documentation
- Navigate to the bottom of the
agent.py
script and uncomment the Ollama arguments and comment out the OpenAI arguments.
python -m agents.agent
Then enter your query.