Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
from agno.agent import Agent from agno.models.anthropic import Claude from agno.models.groq import Groq deepseek_plus_claude = Agent( model=Claude(id="claude-3-7-sonnet-20250219"), reasoning_model=Groq( id="deepseek-r1-distill-llama-70b", temperature=0.6, max_tokens=1024, top_p=0.95 ), ) deepseek_plus_claude.print_response("9.11 and 9.9 -- which is bigger?", stream=True)
创建虚拟环境
Terminal
python3 -m venv .venv source .venv/bin/activate
设置您的 API 密钥
export GROQ_API_KEY=xxx export ANTHROPIC_API_KEY=xxx
安装库
pip install -U groq anthropic agno
运行 Agent
python cookbook/reasoning/models/groq/deepseek_plus_claude.py