Integration docs

Point your SDK base_url at the gateway and use an enterprise API key—no rewrite of your app.

Quick start

  1. Sign in to the console and create/copy your enterprise API key (My Keys).
  2. Set client Base URL to the gateway, e.g. https://ai.gocms.win/v1.
  3. Authorization: Bearer <enterprise-key>; use catalog model names.

OpenAI-compatible sample

Pseudocode:

from openai import OpenAI
client = OpenAI(
  base_url="https://ai.gocms.win/v1",
  api_key="YOUR_ENTERPRISE_KEY",
)
resp = client.chat.completions.create(
  model="your-public-model",
  messages=[{"role":"user","content":"Hello"}],
)

More

Open Console