Moonshot Tool Use
Add WebSearchTools to a Moonshot Kimi K3 agent and stream a current-events answer.
"""
Moonshot Tool Use
=================
Cookbook example for `moonshot/tool_use.py`.
"""
from agno.agent import Agent
from agno.models.moonshot import MoonShot
from agno.tools.websearch import WebSearchTools
# ---------------------------------------------------------------------------
# Create Agent
# ---------------------------------------------------------------------------
agent = Agent(
model=MoonShot(id="kimi-k3"),
markdown=True,
tools=[WebSearchTools()],
)
agent.print_response("What is happening in France?", stream=True)
# ---------------------------------------------------------------------------
# Run Agent
# ---------------------------------------------------------------------------
if __name__ == "__main__":
passRun the Example
Set up your virtual environment
uv venv --python 3.12
source .venv/bin/activateInstall dependencies
uv pip install -U agno ddgs openaiExport your Moonshot API key
export MOONSHOT_API_KEY="your_moonshot_api_key_here"Run the example
Save the code above as tool_use.py, then run:
python tool_use.pyFull source: cookbook/90_models/moonshot/tool_use.py