One OpenAI-compatible API covering chat, vision, search, speech, and OCR — running on your own GPUs.
Point your existing OpenAI SDK at the base URL — no other changes needed.
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!"}]}'
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)
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);
All 7 services share the same base URL and API key.
Full conversational intelligence with streaming, tool use, and long context. OpenAI Chat Completions shape.
1024-dim multilingual vectors for semantic search and RAG. Same response shape as OpenAI embeddings.
Cohere-style relevance scoring. Pass a query and documents; receive results sorted by score.
Multilingual transcription with auto language detection. Force a language with language=ta.
OpenAI Audio Speech-compatible endpoint. Zero-shot voice cloning across 600+ languages. Returns WAV.
Extract text from images and documents. Returns text plus per-line score for confidence filtering.
Analyze images, charts, and scanned documents. Pass image URLs or base64 via the chat messages array.
brioworkx-chat, brioworkx-embed, etc).sk-… key — shown once. Set it as $BRIOWORKX_KEY and you're ready.