-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathexample.py
More file actions
51 lines (39 loc) · 1.25 KB
/
example.py
File metadata and controls
51 lines (39 loc) · 1.25 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
"""
PydanticAI integration example.
Prerequisites:
cp .env.example .env
pip install -r requirements.txt
"""
import asyncio
import os
from dotenv import load_dotenv
from pydantic_ai import Agent
from metorial import Metorial, metorial_pydantic_ai
load_dotenv()
async def main():
metorial = Metorial(api_key=os.getenv("METORIAL_API_KEY"))
# Create a deployment for Metorial Search — built-in web search, no auth needed
deployment = metorial.provider_deployments.create(
name="Metorial Search",
provider_id="metorial-search",
)
session = await metorial.connect(
adapter=metorial_pydantic_ai(),
providers=[
{"provider_deployment_id": deployment.id},
# (Optional) Add an OAuth provider like Slack or GitHub:
# {"provider_deployment_id": "your-slack-deployment-id", "provider_auth_config_id": "auth-config-id"},
],
)
agent = Agent(
"anthropic:claude-sonnet-4-20250514",
system_prompt="You are a helpful research assistant.",
tools=session.tools(),
)
result = await agent.run(
"Use the add tool to add 2 and 3. Reply with just the result."
)
output = getattr(result, "data", None) or getattr(result, "output", str(result))
print(output)
if __name__ == "__main__":
asyncio.run(main())