Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Configure OpenAI, Anthropic, and Gemini clients
from openai import OpenAI client = OpenAI(base_url="https://api.duomi.ai/v1", api_key="API_KEY")
import OpenAI from "openai"; const client = new OpenAI({ baseURL: "https://api.duomi.ai/v1", apiKey: process.env.DUOMI_API_KEY });
from anthropic import Anthropic client = Anthropic(base_url="https://api.duomi.ai", api_key="API_KEY")