Developers

Build on the CiviX Inference API

An OpenAI-compatible API over CiviX-hosted models. Point your existing SDK at a new base URL and keep the rest of your code.

CiviX API access is currently in private beta. Keys are issued on request rather than self-serve signup - tell us what you are building and we will get back to you.

Base URL

Set this as your client's base URL and authenticate with a bearer key.

https://api.civix.com.vn/v1
from openai import OpenAI

client = OpenAI(
    api_key="YOUR_CIVIX_API_KEY",
    base_url="https://api.civix.com.vn/v1",
)

response = client.chat.completions.create(
    model="qwen3.8-27b",
    messages=[{"role": "user", "content": "Hello"}],
)

print(response.choices[0].message.content)

OpenAI-compatible

Works with the official OpenAI SDKs. Change base_url and api_key; the rest of your integration stays as it is.

262K context

Pass long documents, reports, or codebases directly instead of building a retrieval pipeline first.

Reliable streaming

Streamed responses stay healthy through long processing pauses, so large-context requests complete instead of timing out.