Documentation Index
Fetch the complete documentation index at: https://agno-v2-shaloo-ai-support-link.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Code
cookbook/11_models/xai/live_search_agent_stream.py
from agno.agent import Agent
from agno.models.xai.xai import xAI
agent = Agent(
model=xAI(
id="grok-3",
search_parameters={
"mode": "on",
"max_search_results": 20,
"return_citations": True,
},
),
markdown=True,
)
agent.print_response(
"Provide me a digest of world news in the last 24 hours.", stream=True
)
Usage
Set up your virtual environment
uv venv --python 3.12
source .venv/bin/activate
Install dependencies
uv pip install -U xai agno
Run Agent
python cookbook/11_models/xai/live_search_agent_stream.py