Setup Guide: SmoLAgents with DeepSeek-R1 on Ollama
This guide will walk you through setting up SmoLAgents with a local DeepSeek-R1 model running on Ollama.
Prerequisites
- Python 3.8+
- Local GPU with minimum 12GB VRAM (recommended)
- Basic understanding of Python and command-line tools
- Windows, macOS, or Linux operating system
Step 1: Install Ollama
- Visit ollama.ai to download the appropriate version for your operating system
- Install Ollama following the instructions for your platform
- After installation, open a terminal or command prompt and verify Ollama is working:
1 |
|
Step 2: Download DeepSeek-R1 Model
- Pull the DeepSeek-R1 7B model (this will take some time depending on your internet connection):
1 |
|
- Verify the model was downloaded successfully:
1 |
|
You should see deepseek-r1:7b
in the list of available models.
Step 3: Set Up Python Environment
- Create a virtual environment (recommended):
1 2 3 4 5 6 7 8 9 10 11 12 |
|
-
Create a requirements.txt file with the content provided in this tutorial or download it from the repository
-
Install the required packages:
1 |
|
Step 4: Test Basic Functionality
-
Create a simple test script
test_smolagents.py
using the code provided in the tutorial -
Run the test script to verify SmoLAgents is installed correctly:
1 |
|
- Check that Ollama is running the server:
1 2 |
|
Step 5: Run the Example Agents
- Start with the simple agent:
1 |
|
- Try more advanced examples like the code agent and data analysis agent:
1 2 |
|
- For the knowledge graph example, ensure you have NetworkX installed:
1 2 |
|
Troubleshooting
Model Loading Issues
If you encounter issues loading the model:
1 2 |
|
Out of Memory Errors
If you see CUDA out of memory errors:
- Close other applications using GPU memory
- Try a smaller model like
deepseek-r1:6.7b-dpo-q4_0
which uses less memory
Connection Issues
If the agent can't connect to Ollama:
- Verify Ollama is running:
ollama serve
- Check the API endpoint in your code: should be
http://localhost:11434/v1
- Ensure no firewall is blocking the connection
Next Steps
After successfully running the examples, try:
- Creating your own custom tools
- Experimenting with different agent types (JSONAgent, ReActAgent)
- Integrating with other data sources or APIs
- Building a complete application using the agent framework
Happy coding with SmoLAgents and DeepSeek-R1!