Python SDK for model calls, tools, and stateful agents.
pip install ai-queryThe full documentation lives in docs/.
Start here:
from ai_query.agents import Agent
from ai_query.providers import openai
agent = Agent("assistant", model=openai("gpt-4o"))
async with agent:
print(await agent.chat("Hello"))MIT