Skip to content

Supported Models

The Brivionix model marketplace currently lists 9 models. All models can be called through the OpenAI-compatible endpoint:

text
POST https://brivionix.com/v1/chat/completions

Model Overview

ModelContext / Marketplace TagsCapabilitiesInput PriceOutput PriceCache ReadCache Create
gpt-5.3-codex400KReasoning, Tools, Vision$2.0590$16.4700$0.2060
gpt-5.4400KReasoning, Tools, Files, Vision$2.9410$17.6470$0.2940
gpt-5.4-mini400KReasoning, Tools, Files, Vision$2.3410$14.0470$0.2140
gpt-5.51.1MReasoning, Tools, Files, Vision$5.8820$35.2940$0.5880
gpt-5.6-luna1.1M / 400KReasoning, Tools, Files, Vision$1.2500$10.0000$0.2000$2.0000
gpt-5.6-sol1.1M / 400KReasoning, Tools, Files, Vision$6.0000$48.0000$0.6500$7.2500
gpt-5.6-terra1.1M / 400KReasoning, Tools, Files, Vision$3.0000$24.0000$0.3000$3.2500
grok-4.5$4.0000$12.0000$1.0000
grok-4.6$4.0000$12.0000$1.0000

Prices are shown in USD / 1M Tokens, matching the default model marketplace display.

Actual Cost

Enable Top Up price in the model marketplace to view the estimated real billing cost based on the top-up rate 0.85 RMB = 1 API Credit.

Capability Notes

LabelMeaning
ReasoningAdvanced reasoning
ToolsTool calling / Function Calling
FilesFile-related capability
VisionImage understanding / multimodal input
1.1M / 400KContext / marketplace tag combination; verify effective limits from actual responses

Groups

The public model list is documented for the default group. The pricing page shows the openai endpoint (/v1/chat/completions) for these models. When creating or editing a token, use the default group.

Actual access also depends on the token's Available models setting:

  • Empty: no extra model whitelist; the token can call available models in the default group.
  • Filled: only the listed models can be called, and the model name must exactly match the table above.

If the API returns "model unavailable" or "permission denied", first check that the token group is default, the model name is correct, and Available models includes the target model.

Request Example

bash
curl https://brivionix.com/v1/chat/completions \
  -H "Authorization: Bearer sk-your-api-key" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-5.6-luna",
    "messages": [{"role": "user", "content": "Hello"}]
  }'

See Chat Completions for more request parameters.

Last updated: