Spaces:
Paused
Paused
File size: 6,188 Bytes
4efde5d | 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 | import asyncio
from agentpress.thread_manager import ThreadManager
from agentpress.tool import Tool, ToolResult, openapi_schema, usage_example
from agentpress.response_processor import ProcessorConfig
class CalculatorTool(Tool):
@openapi_schema({
"type": "function",
"function": {
"name": "calculate",
"description": "Perform basic mathematical calculations (addition, subtraction, multiplication, division)",
"parameters": {
"type": "object",
"properties": {
"operation": {
"type": "string",
"enum": ["add", "subtract", "multiply", "divide"],
"description": "The mathematical operation to perform"
},
"a": {
"type": "number",
"description": "First number for the calculation"
},
"b": {
"type": "number",
"description": "Second number for the calculation"
}
},
"required": ["operation", "a", "b"]
}
}
})
@usage_example("""
<function_calls>
<invoke name="calculate">
<parameter name="operation">add</parameter>
<parameter name="a">15</parameter>
<parameter name="b">27</parameter>
</invoke>
</function_calls>
This will add 15 and 27 to get 42.""")
async def calculate(self, operation: str, a: float, b: float) -> ToolResult:
if operation == "add":
result = a + b
elif operation == "subtract":
result = a - b
elif operation == "multiply":
result = a * b
elif operation == "divide":
if b == 0:
return self.fail_response("Cannot divide by zero")
result = a / b
else:
return self.fail_response(f"Unknown operation: {operation}")
return self.success_response({"result": result})
def render_conversation(messages):
print("\n" + "="*60)
print("π CONVERSATION HISTORY")
print("="*60)
for i, message in enumerate(messages, 1):
role = message.get('role', 'unknown')
content = message.get('content', '')
if role == 'user':
role_display = "π€ USER"
color = '\033[94m'
elif role == 'assistant':
role_display = "π€ ASSISTANT"
color = '\033[92m'
elif role == 'system':
role_display = "βοΈ SYSTEM"
color = '\033[93m'
else:
role_display = f"π {role.upper()}"
color = '\033[96m'
reset = '\033[0m'
print(f"\n{color}{role_display} (Message {i}){reset}")
print("-" * 40)
if isinstance(content, str):
print(content)
elif isinstance(content, list):
for item in content:
if isinstance(item, dict):
if item.get('type') == 'text':
print(item.get('text', ''))
elif item.get('type') == 'tool_use':
tool_name = item.get('name', 'unknown_tool')
tool_input = item.get('input', {})
print(f"π§ Tool Call: {tool_name}")
print(f" Input: {tool_input}")
else:
print(f" {item}")
else:
print(f" {item}")
elif isinstance(content, dict):
if 'tool_calls' in content:
for tool_call in content['tool_calls']:
function = tool_call.get('function', {})
print(f"π§ Tool Call: {function.get('name', 'unknown')}")
print(f" Arguments: {function.get('arguments', {})}")
else:
print(content)
else:
print(f"[{type(content).__name__}]: {content}")
print("\n" + "="*60)
async def main():
# Initialize thread manager and add tools
thread_manager = ThreadManager()
thread_manager.add_tool(CalculatorTool)
# Define system prompt
system_prompt = {
"role": "system",
"content": """You are a helpful mathematical assistant agent. You can:
1. Perform basic mathematical calculations (addition, subtraction, multiplication, division)
2. Provide help information about available operations
3. Explain mathematical concepts in simple terms
When a user asks for calculations, use the calculator tool to ensure accuracy.
Always be friendly and explain your reasoning when solving problems.
Available tools:
- calculate: Perform mathematical operations
"""
}
# Create thread
thread_id = await thread_manager.create_thread()
messages = [
"What's 15 + 27?",
"Can you multiply 8.5 by 4?",
"What's 100 divided by 7?"
]
for message in messages:
await thread_manager.add_message(
thread_id=thread_id,
type="user",
content={"role": "user", "content": message},
is_llm_message=True
)
response_stream = await thread_manager.run_thread(
thread_id=thread_id,
system_prompt=system_prompt,
stream=True,
llm_model="gpt-5",
processor_config=ProcessorConfig(
xml_tool_calling=True,
execute_tools=True,
tool_execution_strategy="sequential"
),
include_xml_examples=True
)
async for chunk in response_stream:
if isinstance(chunk, dict) and chunk.get('type') == 'content':
print(chunk.get('content', ''), end='', flush=True)
print()
try:
conversation_history = await thread_manager.get_llm_messages(thread_id)
render_conversation(conversation_history)
except Exception as e:
print(f"Failed to fetch conversation history: {e}")
if __name__ == "__main__":
asyncio.run(main()) |