LiteLLM Basic
Run a Hugging Face Mistral model through LiteLLM with sync, async, and streaming calls.
"""
Litellm Basic
=============
Cookbook example for `litellm/basic.py`.
"""
import asyncio
from agno.agent import Agent
from agno.models.litellm import LiteLLM
# ---------------------------------------------------------------------------
# Create Agent
# ---------------------------------------------------------------------------
openai_agent = Agent(
model=LiteLLM(
id="huggingface/mistralai/Mistral-7B-Instruct-v0.2",
top_p=0.95,
),
markdown=True,
)
# ---------------------------------------------------------------------------
# Run Agent
# ---------------------------------------------------------------------------
if __name__ == "__main__":
# --- Sync ---
openai_agent.print_response("Whats happening in France?")
# --- Sync + Streaming ---
openai_agent.print_response("Share a 2 sentence horror story", stream=True)
# --- Async ---
asyncio.run(openai_agent.aprint_response("Share a 2 sentence horror story"))
# --- Async + Streaming ---
asyncio.run(
openai_agent.aprint_response("Share a 2 sentence horror story", stream=True)
)Run the Example
Set up your virtual environment
uv venv --python 3.12
source .venv/bin/activateInstall dependencies
uv pip install -U agno litellmSet your Hugging Face credentials
Use a Hugging Face token with inference-provider permission and access to a provider serving this model; provider billing requirements may apply. The LiteLLM SDK calls the provider directly. An existing LITELLM_API_KEY overrides provider-specific credentials, so clear it for this example.
unset LITELLM_API_KEY
export HUGGINGFACE_API_KEY="your_provider_api_key_here"Run the example
Save the code above as basic.py, then run:
python basic.pyFull source: cookbook/90_models/litellm/basic.py