- Notifications
You must be signed in to change notification settings - Fork 3.8k
/
Copy pathagent_with_mcp_agent.py
118 lines (100 loc) · 4.57 KB
/
agent_with_mcp_agent.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# Copyright (c) Microsoft. All rights reserved.
importasyncio
importos
frompathlibimportPath
fromsemantic_kernel.agentsimportChatCompletionAgent, ChatHistoryAgentThread
fromsemantic_kernel.connectors.ai.open_aiimportAzureChatCompletion
fromsemantic_kernel.connectors.mcpimportMCPStdioPlugin
fromsemantic_kernel.core_plugins.time_pluginimportTimePlugin
"""
The following sample demonstrates how to create a chat completion agent that
answers questions about Github using a Semantic Kernel Plugin from a MCP server.
It uses the Azure OpenAI service to create a agent, so make sure to
set the required environment variables for the Azure AI Foundry service:
- AZURE_OPENAI_CHAT_DEPLOYMENT_NAME
- Optionally: AZURE_OPENAI_API_KEY
If this is not set, it will try to use DefaultAzureCredential.
"""
asyncdefmain():
# 1. Create the agent
asyncwith (
MCPStdioPlugin(
name="Menu",
description="Menu plugin, for details about the menu, call this plugin.",
command="uv",
args=[
f"--directory={str(Path(os.path.dirname(__file__)).joinpath('servers'))}",
"run",
"menu_agent_server.py",
],
env={
"AZURE_OPENAI_CHAT_DEPLOYMENT_NAME": os.getenv("AZURE_OPENAI_CHAT_DEPLOYMENT_NAME"),
"AZURE_OPENAI_ENDPOINT": os.getenv("AZURE_OPENAI_ENDPOINT"),
},
) asrestaurant_agent,
MCPStdioPlugin(
name="Booking",
description="Restaurant Booking Plugin",
command="uv",
args=[
f"--directory={str(Path(os.path.dirname(__file__)).joinpath('servers'))}",
"run",
"restaurant_booking_agent_server.py",
],
env={
"AZURE_OPENAI_CHAT_DEPLOYMENT_NAME": os.getenv("AZURE_OPENAI_CHAT_DEPLOYMENT_NAME"),
"AZURE_OPENAI_ENDPOINT": os.getenv("AZURE_OPENAI_ENDPOINT"),
},
) asbooking_agent,
):
agent=ChatCompletionAgent(
service=AzureChatCompletion(),
name="PersonalAssistant",
instructions="Help the user with restaurant bookings.",
plugins=[restaurant_agent, booking_agent, TimePlugin()],
)
# 2. Create a thread to hold the conversation
# If no thread is provided, a new thread will be
# created and returned with the initial response
thread: ChatHistoryAgentThread|None=None
whileTrue:
user_input=input("User: ")
ifuser_input.lower() =="exit":
break
# 3. Invoke the agent for a response
response=awaitagent.get_response(messages=user_input, thread=thread)
print(f"# {response.name}: {response} ")
thread=response.thread
# 4. Cleanup: Clear the thread
awaitthread.delete() ifthreadelseNone
"""
User: what restaurants can I choose from?
# PersonalAssistant: Here are the available restaurants you can choose from:
1. **The Farm**: A classic steakhouse with a rustic atmosphere.
2. **The Harbor**: A seafood restaurant with a view of the ocean.
3. **The Joint**: A casual eatery with a diverse menu.
Let me know if you would like to make a booking or need more information about any specific restaurant!
User: the farm sounds nice, what are the specials there?
# PersonalAssistant: The specials at The Farm are:
- **Special Entree:** T-bone steak
- **Special Salad:** Caesar Salad
- **Special Drink:** Old Fashioned
Let me know if you'd like to make a booking or if you need any more information!
User: That entree sounds great, how much does it cost?
# PersonalAssistant: The cost of the T-bone steak at The Farm is $9.99. Would you like to proceed with a booking?
User: yes, for 2 people tomorrow
# PersonalAssistant: I can confirm a booking for 2 people at The Farm for tomorrow, April 17, 2025. What time would you
like the reservation?
User: at 2000
# PersonalAssistant: I apologize, but the booking at The Farm for tomorrow at 20:00 has been denied. However,
I was able to confirm bookings at the following restaurants:
- **The Harbor**: Booking confirmed.
- **The Joint**: Booking confirmed.
If you'd like to book at one of these restaurants or try a different time or restaurant, just let me know!
User: try 21.00
# PersonalAssistant: Your table for 2 people at The Farm has been successfully booked for tomorrow, April 17, 2025,
at 21:00. Enjoy your meal! If you need anything else, feel free to ask.
User: exit
"""
if__name__=="__main__":
asyncio.run(main())