Moonshot Tool Use

Add WebSearchTools to a Moonshot Kimi K3 agent and stream a current-events answer.

tool_use.py
"""
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__":
    pass

Run the Example

Set up your virtual environment

uv venv --python 3.12
source .venv/bin/activate

Install dependencies

uv pip install -U agno ddgs openai

Export 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.py

Full source: cookbook/90_models/moonshot/tool_use.py