Brioworkx
Brioworkx
AI Platform
Checking status…

Build AI products,
not infrastructure.

One OpenAI-compatible API covering chat, vision, search, speech, and OCR — running on your own GPUs.

Base URL https://ai-platform.fincover.com
brioworkx-chat brioworkx-vision brioworkx-embed brioworkx-rerank brioworkx-stt brioworkx-tts brioworkx-ocr

Quickstart

Point your existing OpenAI SDK at the base URL — no other changes needed.

shell
curl https://ai-platform.fincover.com/v1/chat/completions \
  -H "Authorization: Bearer $BRIOWORKX_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"brioworkx-chat","messages":[{"role":"user","content":"Hello!"}]}'
python
from openai import OpenAI

client = OpenAI(
    base_url="https://ai-platform.fincover.com/v1",
    api_key="sk-your-key"
)

response = client.chat.completions.create(
    model="brioworkx-chat",
    messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)
typescript / node.js
import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://ai-platform.fincover.com/v1",
  apiKey: process.env.BRIOWORKX_KEY,
});

const response = await client.chat.completions.create({
  model: "brioworkx-chat",
  messages: [{ role: "user", content: "Hello!" }],
});
console.log(response.choices[0].message.content);

Services

All 7 services share the same base URL and API key.

Chat
Qwen3.6-35B-A3B · brioworkx-chat

Full conversational intelligence with streaming, tool use, and long context. OpenAI Chat Completions shape.

POST /v1/chat/completions
Embeddings
BGE-M3 · brioworkx-embed

1024-dim multilingual vectors for semantic search and RAG. Same response shape as OpenAI embeddings.

POST /v1/embeddings
Rerank
BGE-Reranker-v2-M3 · brioworkx-rerank

Cohere-style relevance scoring. Pass a query and documents; receive results sorted by score.

POST /v1/rerank
Speech-to-Text
Whisper large-v3-turbo · brioworkx-stt

Multilingual transcription with auto language detection. Force a language with language=ta.

POST /v1/audio/transcriptions
Text-to-Speech
OmniVoice · brioworkx-tts

OpenAI Audio Speech-compatible endpoint. Zero-shot voice cloning across 600+ languages. Returns WAV.

POST /v1/audio/speech
OCR
RapidOCR · brioworkx-ocr

Extract text from images and documents. Returns text plus per-line score for confidence filtering.

POST /v1/ocr/file
Vision
Qwen3.6-35B-A3B · brioworkx-vision

Analyze images, charts, and scanned documents. Pass image URLs or base64 via the chat messages array.

POST /v1/chat/completions

Get your API key

  1. 1Open the Console and sign in with your admin credentials.
  2. 2Go to Gateway → Virtual Keys → Create New Key, scope it to the models you need (brioworkx-chat, brioworkx-embed, etc).
  3. 3Copy the sk-… key — shown once. Set it as $BRIOWORKX_KEY and you're ready.