Connect OpenAI, Anthropic, or Google Gemini behind one unified OpenAI-compatible endpoint. Switch providers without touching app code. All provider keys stored in your org's dedicated secrets vault — never in the database.
Deploy open-weight models — LLaMA 3, Mistral, Phi-3, Qwen, Gemma — to dedicated GPU containers on Azure. Three environments (development, preview, production) with zero-downtime promote. Real CPU/memory/GPU% metrics from Azure Monitor, no instrumentation needed.
A structured reasoning loop with sandboxed tool access — calculator, web fetch, and code execution. Up to 6 reasoning steps, full trace returned. Powered by Anthropic Claude for the reasoning backbone.
Upload PDF, DOCX, or TXT documents. BRICQS chunks, embeds, and indexes them automatically. Ask questions and get answers grounded in your documents via vector similarity search.
Chain prompt-template steps into a multi-step AI pipeline. Each step can call any other runtime — a GPU deployment, a RAG index, or the LLM API. Pass outputs forward with {{previous}} or reference named steps.
Each runtime is independent. You can use one or all five within the same project.
| Runtime | Use when… | Input | Output | GPU? |
|---|---|---|---|---|
| LLM API | You need one API key for all providers | Messages array | Chat completion | — |
| GPU Runtime | You need private, open-weight models | Messages / prompt | Completion | ✓ |
| Agent | You need multi-step reasoning + tools | Goal prompt | Result + trace | — |
| RAG | Your app needs document Q&A | Documents + question | Grounded answer | — |
| Workflow | You need a reusable AI pipeline | Variables | Final step output | Optional |