PydanticAI
Using Infron AI with PydanticAI
Using PydanticAI
Installation
pip install 'pydantic-ai-slim[openai]'Configuration
from pydantic_ai import Agent
from pydantic_ai.models.openai import OpenAIModel
model = OpenAIModel(
"claude-3-5-sonnet@20240620", # or any other Infron AI model
base_url="https://llm.onerouter.pro/v1",
api_key="API_KEY",
)
agent = Agent(model)
result = await agent.run("What is the meaning of life?")
print(result)Last updated