Intalling SmolAgents
Why SmolAgents
AI agent frameworks are often criticized with two points:
- They build too many layers of abstraction, making them rigid and challenging to learn and use.
- They focus on "workflows" rather than building agents that can dynamically collaborate on their own using Python data structures.
Smolagents has qualities that make ideal for simple agentic applications.
- The framework's abstractions are kept at a minimum.
- While most frameworks have the agents define their actions in JSON/text format, smolagents' main approach is
Code Agents
in which actions are written as Python code snippets (this is different from agents that write code). - Being a Hugging Face framework, smolagents integrates well with the Hub and the Transformers library. You can use many models from the hub (some of them you can only use as a Pro user), and you can also work with proprietary models from OpenAI, Anthropic, etc.
- You can easily utilize the already-provided tools, or define your custom tools with minimum effort, almost as simple as writing a Python function.
These qualities are what, on paper, make smolagents a plug-and-play with AI agents with little effort, so let's see if they hold in practice.
Installing SmolAgents
Make sure you are in the correct environment. In this class we used conda to create an environment called "agents"
1 |
|
Next, use pip
to install the smolagents Python library
1 2 |
|
The second line also includes the litellm module.
Testing SmolAgents
Basic Test
1 2 |
|
Test with Version and Dir
We can also use the Python dir
function on the smolagents module
to get a detailed list of the items in the smolagents Python library.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
|
1 2 3 4 5 6 |
|
Creating a Model
We can get a list of the agent types by looking for all method names with the string "Agent" it it.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
|
1 2 3 4 5 6 7 |
|