SDKs & Tools
Use established OpenAI-compatible libraries or connect tools directly to Origami.
Supported developer tools
Each card links to the exact configuration for that tool.
OpenCode
AI-powered coding agent. Use the OpenAI-compatible AI SDK adapter and the public model ID returned by the catalog.
View configurationClaude Code
Anthropic's agentic coding tool. Set the Anthropic base to the Origami origin. Claude Code adds /v1/messages.
Cline
VS Code AI coding assistant. Configure an OpenAI-compatible provider pointing to the Origami API base.
View SDK examplesComfyUI
Node-based image generation workflow. Point ComfyUI custom nodes to Origami for managed image model access.
View media APIsCursor
AI-first code editor. Add an OpenAI-compatible provider with your Origami API key and base URL.
View SDK examplesHermes Agent
Autonomous AI agent framework. Configure the OpenAI-compatible backend to use the Origami API.
View SDK examplesOpenClaw
Open-source AI agent. Point the agent's model provider to Origami for managed routing and budgets.
View SDK examplesOpen WebUI
Open-source chat interface. Add an OpenAI-compatible connection with your Origami base URL and API key.
View SDK examplesRooCode
AI-powered development agent. Configure an OpenAI-compatible provider targeting the Origami endpoint.
View SDK examplesOpenCode configuration
1{2 "$schema": "https://opencode.ai/config.json",3 "provider": {4 "origami": {5 "npm": "@ai-sdk/openai-compatible",6 "name": "Origami",7 "options": {8 "baseURL": "https://origamiaai.vercel.app/v1",9 "apiKey": "{env:ORIGAMI_API_KEY}"10 },11 "models": {12 "YOUR_PUBLIC_MODEL": {13 "name": "Origami model"14 }15 }16 }17 },18 "model": "origami/YOUR_PUBLIC_MODEL"19}
Claude Code configuration
1export ANTHROPIC_BASE_URL="https://origamiaai.vercel.app"2export ANTHROPIC_AUTH_TOKEN="$ORIGAMI_API_KEY"3export ANTHROPIC_MODEL="YOUR_PUBLIC_MODEL"4export ANTHROPIC_DEFAULT_OPUS_MODEL="$ANTHROPIC_MODEL"5export ANTHROPIC_DEFAULT_SONNET_MODEL="$ANTHROPIC_MODEL"6export ANTHROPIC_DEFAULT_HAIKU_MODEL="$ANTHROPIC_MODEL"7export CLAUDE_CODE_ENABLE_GATEWAY_MODEL_DISCOVERY="1"89claude --model "$ANTHROPIC_MODEL"
For Claude Code, the base is the origin https://origamiaai.vercel.app, without a trailing /v1. For OpenAI clients, the base is https://origamiaai.vercel.app/v1.