Quickstart
Install
Configure a Model
Createprovider.json in your project root:
Your First LLM Function
- Builds a system prompt from the docstring + parameter types + return type schema
- Sends the function arguments as the user message
- Parses the LLM response into your Pydantic model
Direct Construction (No provider.json)
For quick scripts, construct the model directly:What’s Next
Build a Tool-Using Agent
Add tools and see the ReAct loop in action.
Build a Multi-Turn Chat
History management, streaming, and stateful conversations.