Use Auriko as your LLM provider in Google’s Agent Development Kit (ADK). This integration is Python-only. For TypeScript, use the Vercel AI SDK integration.Documentation Index
Fetch the complete documentation index at: https://docs.auriko.ai/llms.txt
Use this file to discover all available pages before exploring further.
Prerequisites
Install
Use SDK adapter
Use theAurikoLlm adapter:
AurikoLlm is a native BaseLlm implementation that supports text and function calling. It maps OpenAI API errors to typed Auriko error classes.
inline_data and file_data parts raise NotImplementedError.Configure options
| Parameter | Type | Default | Description |
|---|---|---|---|
model | str | (required) | Model ID |
api_key | str | AURIKO_API_KEY env | API key |
routing | RoutingOptions | None | None | Routing configuration |
base_url | str | "https://api.auriko.ai/v1" | API base URL |
Configure routing
Pass aRoutingOptions instance to control routing:
Configure manually
Alternative: configure ADK with LiteLlm manually
Alternative: configure ADK with LiteLlm manually
If you prefer to use Google’s For routing options and typed error mapping, use
LiteLlm class directly:AurikoLlm.