Copy
Ask AI
"""
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
Copy
Ask AI
# Clone and setup repo
git clone https://github.com/agno-agi/agno.git
cd agno/cookbook/90_models/litellm
# Create and activate virtual environment
./scripts/demo_setup.sh
source .venvs/demo/bin/activate
python basic.py