-
Notifications
You must be signed in to change notification settings - Fork 183
Expand file tree
/
Copy pathpydanticai_mcp_http.py
More file actions
62 lines (50 loc) · 2.1 KB
/
pydanticai_mcp_http.py
File metadata and controls
62 lines (50 loc) · 2.1 KB
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
"""PydanticAI + MCP HTTP example.
Prerequisite:
Start the local MCP server defined in `mcp_server_basic.py` on port 8000:
python examples/mcp_server_basic.py
"""
import asyncio
import logging
import os
from azure.identity.aio import DefaultAzureCredential, get_bearer_token_provider
from dotenv import load_dotenv
from openai import AsyncOpenAI
from pydantic_ai import Agent
from pydantic_ai.mcp import MCPServerStreamableHTTP
from pydantic_ai.models.openai import OpenAIChatModel
from pydantic_ai.providers.openai import OpenAIProvider
# Setup the OpenAI client to use Azure OpenAI
load_dotenv(override=True)
API_HOST = os.getenv("API_HOST", "azure")
async_credential = None
if API_HOST == "azure":
async_credential = DefaultAzureCredential()
token_provider = get_bearer_token_provider(async_credential, "https://cognitiveservices.azure.com/.default")
client = AsyncOpenAI(
base_url=os.environ["AZURE_OPENAI_ENDPOINT"] + "/openai/v1",
api_key=token_provider,
)
model = OpenAIChatModel(os.environ["AZURE_OPENAI_CHAT_DEPLOYMENT"], provider=OpenAIProvider(openai_client=client))
elif API_HOST == "ollama":
client = AsyncOpenAI(base_url=os.environ.get("OLLAMA_ENDPOINT", "http://localhost:11434/v1"), api_key="none")
model = OpenAIChatModel(os.environ["OLLAMA_MODEL"], provider=OpenAIProvider(openai_client=client))
else:
client = AsyncOpenAI(api_key=os.environ["OPENAI_API_KEY"])
model = OpenAIChatModel(os.environ.get("OPENAI_MODEL", "gpt-4o"), provider=OpenAIProvider(openai_client=client))
server = MCPServerStreamableHTTP(url="http://localhost:8000/mcp")
agent: Agent[None, str] = Agent(
model,
system_prompt="You are a travel planning agent. You can help users find hotels.",
output_type=str,
toolsets=[server],
)
async def main():
result = await agent.run(
"Find me a hotel in San Francisco for 2 nights starting from 2024-01-01. I need free WiFi and a pool."
)
print(result.output)
if async_credential:
await async_credential.close()
if __name__ == "__main__":
logging.basicConfig(level=logging.WARNING)
asyncio.run(main())