-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathadd_llm_generated_function_example.py
99 lines (79 loc) · 2.87 KB
/
add_llm_generated_function_example.py
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
import logging
import json
import traceback
from dotenv import load_dotenv
from litemultiagent.tools.tool_creation_agent import ToolCreationAgent
from litemultiagent.core.agent_system import AgentSystem
from litemultiagent.tools.registry import Tool
import uuid
# Configure logging
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
handlers=[
logging.FileHandler("log.txt", mode="w"),
logging.StreamHandler()
]
)
logger = logging.getLogger(__name__)
# Load environment variables
load_dotenv()
def main():
"""
Demonstrates usage of the ToolCreationAgent class for tool creation and testing.
Creates a calculator tool and tests it with basic arithmetic operations.
"""
# Initialize the agent with specified model
tool_creation_agent = ToolCreationAgent(model_name="anthropic/claude-3-5-sonnet-20240620")
# Define tool specifications
tool_specs = {
"calculator": "Create a calculator tool that can perform basic operations (add, subtract, multiply, divide) between two numbers"
}
# Create tools based on specifications
mapping = {}
for description, spec in tool_specs.items():
result = tool_creation_agent.send_prompt(spec)
if result:
name, func, description, parameters = result
print(f"\nCreated tool: {name}")
print(f"Description: {description}")
print(f"Parameters: {json.dumps(parameters, indent=2)}")
mapping[spec] = [name, func, description, parameters]
# Cleanup resources
tool_creation_agent.cleanup_cache()
new_tools = [
Tool(name, func, description, parameters)
for spec in mapping
for name, func, description, parameters in [mapping[spec]]
]
test_agent_config = {
"name": "test_agent",
"type": "atomic",
"agent_class": "FunctionCallingAgent",
"meta_data": {},
"tool_names": ["read_file", "write_to_file", "generate_and_download_image"],
"self_defined_tools": new_tools,
"system_prompt": "You are an ai agent, we want to test using some tools",
"agent_description": None,
"parameter_description": None
}
system_config = {
"system_name": "test_agent_system",
"system_runtime_id": str(uuid.uuid4()),
"save_to": "csv",
"log_dir": "log",
"model_name": "gpt-4o-mini",
"tool_choice": "auto"
}
agent_system = AgentSystem(test_agent_config, system_config)
# Test calculator functionality
test_cases = [
("calculate 3+4", "Addition test"),
("calculate 3 times 4", "Multiplication test")
]
for task, description in test_cases:
result = agent_system.execute(task)
print(f"{description} - Task: {task}")
print(f"Result: {result}")
if __name__ == "__main__":
main()