Tool Use
Add web search tools to an LM Studio agent and run sync and streaming queries.
"""Run `uv pip install ddgs` to install dependencies."""
from agno.agent import Agent
from agno.models.lmstudio import LMStudio
from agno.tools.websearch import WebSearchTools
# ---------------------------------------------------------------------------
# Create Agent
# ---------------------------------------------------------------------------
agent = Agent(
model=LMStudio(id="qwen2.5-7b-instruct-1m"),
tools=[WebSearchTools()],
markdown=True,
)
# ---------------------------------------------------------------------------
# Run Agent
# ---------------------------------------------------------------------------
if __name__ == "__main__":
# --- Sync ---
agent.print_response("Whats happening in France?")
# --- Sync + Streaming ---
agent.print_response("Whats happening in France?", stream=True)Run the Example
Set up your virtual environment
uv venv --python 3.12
source .venv/bin/activateInstall dependencies
uv pip install -U agno ddgs openaiPrepare LM Studio
Load qwen2.5-7b-instruct-1m in LM Studio and start its local server at http://127.0.0.1:1234/v1.
Run the example
Save the code above as tool_use.py, then run:
python tool_use.pyFull source: cookbook/90_models/lmstudio/tool_use.py