The smolagents library can be installed using pip. Here are the different installation methods and options available.
Install smolagents core library with:
pip install smolagents
smolagents provides several optional dependencies (extras) that can be installed based on your needs.
You can install these extras using the following syntax:
pip install "smolagents[extra1,extra2]"These extras include various tools and integrations:
pip install "smolagents[toolkit]"pip install "smolagents[mcp]"These extras enable integration with various AI models and frameworks:
pip install "smolagents[openai]"pip install "smolagents[transformers]"pip install "smolagents[vllm]"pip install "smolagents[mlx-lm]"pip install "smolagents[litellm]"pip install "smolagents[bedrock]"Extras for handling different types of media and input:
pip install "smolagents[vision]"pip install "smolagents[audio]"Extras for executing code remotely:
pip install "smolagents[docker]"pip install "smolagents[e2b]"Extras for telemetry, monitoring and user interface components:
pip install "smolagents[telemetry]"pip install "smolagents[gradio]"To install all available extras, you can use:
pip install "smolagents[all]"After installation, you can verify that smolagents is installed correctly by running:
import smolagents
print(smolagents.__version__)Once you have successfully installed smolagents, you can: