File size: 8,002 Bytes
dc893fb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 | """Demo: Using Tool schemas with base Tool class.
This example demonstrates how to use the Tool base class and its schema methods.
"""
import asyncio
from pathlib import Path
from typing import Any
import yaml
from mini_agent import LLMClient, LLMProvider
from mini_agent.schema import Message
from mini_agent.tools.base import Tool, ToolResult
def load_config():
"""Load config from config.yaml."""
config_path = Path("mini_agent/config/config.yaml")
with open(config_path, encoding="utf-8") as f:
return yaml.safe_load(f)
class WeatherTool(Tool):
"""Example weather tool."""
@property
def name(self) -> str:
return "get_weather"
@property
def description(self) -> str:
return "Get current weather information for a location. Returns temperature and conditions."
@property
def parameters(self) -> dict[str, Any]:
return {
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "City and state, e.g. 'San Francisco, CA' or 'London, UK'",
},
"unit": {
"type": "string",
"enum": ["celsius", "fahrenheit"],
"description": "Temperature unit (celsius or fahrenheit)",
},
},
"required": ["location"],
}
async def execute(self, **kwargs) -> ToolResult:
"""Mock execute method."""
return ToolResult(success=True, content="Weather data")
class SearchTool(Tool):
"""Example search tool."""
@property
def name(self) -> str:
return "search_web"
@property
def description(self) -> str:
return "Search the web for information about a topic"
@property
def parameters(self) -> dict[str, Any]:
return {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search query string",
},
"max_results": {
"type": "integer",
"description": "Maximum number of results to return (1-10)",
},
},
"required": ["query"],
}
async def execute(self, **kwargs) -> ToolResult:
"""Mock execute method."""
return ToolResult(success=True, content="Search results")
class CalculatorTool(Tool):
"""Example calculator tool."""
@property
def name(self) -> str:
return "calculator"
@property
def description(self) -> str:
return "Perform arithmetic calculations"
@property
def parameters(self) -> dict[str, Any]:
return {
"type": "object",
"properties": {
"expression": {
"type": "string",
"description": "Mathematical expression to evaluate, e.g. '2 + 2' or '10 * 5'",
}
},
"required": ["expression"],
}
async def execute(self, **kwargs) -> ToolResult:
"""Mock execute method."""
return ToolResult(success=True, content="Calculation result")
class TranslateTool(Tool):
"""Example translate tool."""
@property
def name(self) -> str:
return "translate"
@property
def description(self) -> str:
return "Translate text from one language to another"
@property
def parameters(self) -> dict[str, Any]:
return {
"type": "object",
"properties": {
"text": {
"type": "string",
"description": "Text to translate",
},
"target_language": {
"type": "string",
"description": "Target language code (e.g. 'en', 'es', 'fr')",
},
},
"required": ["text", "target_language"],
}
async def execute(self, **kwargs) -> ToolResult:
"""Mock execute method."""
return ToolResult(success=True, content="Translation result")
async def demo_tool_schemas():
"""Demonstrate using Tool objects with LLM."""
config = load_config()
print("=" * 60)
print("Method 1: Using Tool Objects with LLM")
print("=" * 60)
# Create tool instances
weather_tool = WeatherTool()
search_tool = SearchTool()
# Create client
client = LLMClient(
api_key=config["api_key"],
provider=LLMProvider.ANTHROPIC,
model="MiniMax-M2.1",
)
# Test with a query that should trigger weather tool
messages = [
Message(
role="user",
content="What's the weather like in Tokyo? I want it in celsius.",
)
]
print("\nQuery: What's the weather like in Tokyo? I want it in celsius.")
print("\nAvailable tools:")
print(f" 1. {weather_tool.name}: {weather_tool.description}")
print(f" 2. {search_tool.name}: {search_tool.description}")
# Pass Tool objects directly to generate
response = await client.generate(
messages,
tools=[weather_tool, search_tool], # Using Tool objects
)
print(f"\nResponse content: {response.content}")
if response.thinking:
print(f"\nThinking: {response.thinking}")
if response.tool_calls:
print(f"\nTool calls made: {len(response.tool_calls)}")
for tool_call in response.tool_calls:
print(f" - Function: {tool_call.function.name}")
print(f" Arguments: {tool_call.function.arguments}")
async def demo_multiple_tools():
"""Demonstrate using multiple Tool instances."""
config = load_config()
print("\n" + "=" * 60)
print("Method 2: Using Multiple Tool Instances")
print("=" * 60)
# Create tool instances
calculator_tool = CalculatorTool()
translate_tool = TranslateTool()
client = LLMClient(
api_key=config["api_key"],
provider=LLMProvider.ANTHROPIC,
model="MiniMax-M2.1",
)
messages = [Message(role="user", content="Calculate 15 * 23 for me")]
print("\nQuery: Calculate 15 * 23 for me")
print("\nAvailable tools:")
print(" 1. calculator (Tool)")
print(" 2. translate (Tool)")
response = await client.generate(messages, tools=[calculator_tool, translate_tool])
print(f"\nResponse content: {response.content}")
if response.thinking:
print(f"\nThinking: {response.thinking}")
if response.tool_calls:
print(f"\nTool calls made: {len(response.tool_calls)}")
for tool_call in response.tool_calls:
print(f" - Function: {tool_call.function.name}")
print(f" Arguments: {tool_call.function.arguments}")
async def demo_tool_schema_methods():
"""Demonstrate Tool schema conversion methods."""
print("\n" + "=" * 60)
print("Method 3: Tool Schema Conversion Methods")
print("=" * 60)
weather_tool = WeatherTool()
print("\nTool to Anthropic schema (to_schema):")
anthropic_schema = weather_tool.to_schema()
print(f" {anthropic_schema}")
print("\nTool to OpenAI schema (to_openai_schema):")
openai_schema = weather_tool.to_openai_schema()
print(f" {openai_schema}")
print("\nSchema methods allow flexible tool usage with different LLM providers.")
async def main():
"""Run all demos."""
print("\n🚀 Tool Schema Demo - Using Tool Base Class\n")
try:
# Demo 1: Tool objects with LLM
await demo_tool_schemas()
# Demo 2: Multiple tools
await demo_multiple_tools()
# Demo 3: Schema methods
await demo_tool_schema_methods()
print("\n✅ All demos completed successfully!")
except Exception as e:
print(f"\n❌ Error: {e}")
import traceback
traceback.print_exc()
if __name__ == "__main__":
asyncio.run(main())
|