-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexample.py
60 lines (45 loc) · 1.3 KB
/
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
from mcpx_pydantic_ai import Agent, BaseModel, Field
from typing import List
import readline
import asyncio
from pydantic_ai import capture_run_messages
class ImageList(BaseModel):
images: List[str] = Field("List of image URLs")
class VowelCount(BaseModel):
count: int = Field("Number of vowels")
source: str = Field("Source string")
def new_agent(result_type, model="claude-3-5-sonnet-latest"):
"""
Create a new agent for the given return type
"""
return Agent(model, result_type=result_type)
history = []
async def run(agent, msg):
"""
Send a message to an agent and return the result
"""
global history
async with agent.run_stream(msg, message_history=history) as result:
return await result.get_data()
types = ImageList | VowelCount
agent = new_agent(types)
while True:
msg = input("> ")
readline.add_history(msg)
if msg == "exit":
break
elif len(msg) == 0:
continue
elif msg.startswith("/type"):
msg = msg[5:].strip()
name = msg.split(" ", maxsplit=1)[0]
s = msg[len(name) + 1 :]
exec(f"""
class Type_{name}(BaseModel):
{s}
""")
t = eval(f"Type_{name}")
agent = new_agent(types | t)
continue
res = asyncio.run(run(agent, msg))
print(">>", res)