Turn Birk models
into running workflows
Compose Birk models into reliable multi-step workflows with parallel processing, retries, approvals, and full observability.
One workflow,
the right model
at each step
Workflows decide where each Birk model belongs: fast classification, tool-using reasoning, deep analysis, image generation, or voice output. The result is not one long prompt, but a production path you can inspect and improve.
Classify, route, summarize, and handle quick text or vision analysis.
Reason over context, call tools, and produce structured workflow steps.
Take over when long context, code, or high-depth analysis is required.
Generate visual outputs from approved prompts or refined briefs.
Deliver realtime voice output and conversational audio experiences.
Better way with
Text Agent
Classifies intent, retrieves context, and writes a grounded response.
1import { agent, task } from "@briqmind/sdk";2 3const textAgent = agent("support-writer", {4 model: "birk-agent-light-v1",5 tools: [retrieveContext, qualityCheck],6});7 8export const answerCustomer = task(async (message: string) => {9 const intent = await textAgent.classify(message);10 const context = await retrieveContext(intent);11 12 const draft = await textAgent.generate({13 message,14 context,15 style: "concise",16 });17 18 return qualityCheck(draft);19});Break work into reliable steps
import { task } from "@briqmind/sdk/workflows";
const analyzeDocument = task(
{ name: 'analyzeDocument' },
function analyzeDocument(doc: string): string {
console.log(`Analyzing document with Birk`);
return birk.extract(doc);
}
Define model-sized tasks
Turn a request into clear Birk steps: route with Fast, reason with Light, escalate to Heavy, then call tools or produce output.
Retry the risky step only
Retry the failed model call, connector, Blink render, or Blip voice segment without repeating the entire workflow.
Save context and resume
Store inputs, retrieved context, model outputs, approvals, and tool results so long-running work continues from the right point.
Scale model work without waiting
Fast decisions stay responsive
Keep Birk-Fast classification, routing, and lightweight analysis separate from heavier jobs so everyday decisions do not slow down.
Model chains run in parallel
Run Birk-Light, Birk-Heavy, Blink, and Blip steps at the same time so one long task does not block the whole workflow.
Heavy work gets dedicated capacity
Give long-context analysis, large document processing, and generation jobs their own room to finish cleanly.
Every model step. Full visibility.
| RUN ID | STATUS | STEP | STARTED | DURATION | |
|---|---|---|---|---|---|
| trn-d52pv8f5r7bs738gcq00 | Waiting | policy_context | 1 hour ago | - | |
| trn-f8k3v2m9q7bz4lx6p0rt | Running | tool_call.crm_update | 1 hour ago | 32s | |
| trn-a6w9c4r8y1p5z0t3n7hs | Running | birk_light.reason | 1 hour ago | 41s | |
| trn-m2q7v8x1k5r9c0f3z6pb | Succeeded | blink.render | 2 hours ago | 23s | |
| trn-r5x0t8k3p6v2q1z9b4mc | Succeeded | birk_heavy.review | 2 hours ago | 14s | |
| trn-b7z3f6p2k9x4r1v8m0qc | Succeeded | blip.voice_reply | 2 hours ago | 93s |
Tool call: update CRM
Trace every model call, tool call, approval, retry, latency spike, and generated output in one run history.
Compare Birk models' performance across time, cost, reliability, and failure reason.
Inspect the exact step that needs work: prompt, retrieved context, connector response, model output, or human review.
Pay per use
Simple pricing based on the number of concurrent workflows you need to run and the compute you use, billed by the second. Zero per-task fees.
Explore pricing| Task compute | $/sec | CPU | RAM |
|---|---|---|---|
| Starter | $0.05 | 0.5 CPU | 512 MB |
| Standard | $0.20 | 1 CPU | 2 GB |
| Pro | $0.40 | 2 CPU | 4 GB |
Start from a real workflow
Website audit workflow
Scan pages in parallel, classify issues with Birk-Fast, review findings with Birk-Light, and return a prioritized action list.
Voice intake workflow
Use Blip for live voice intake, route the request with Birk-Fast, then trigger follow-up tools after confirmation.
Creative production workflow
Generate visual options with Blink, evaluate brand fit with Birk-Light, and keep approvals before publishing.
Customer data merge workflow
Merge CRM, billing, and support records with parallel model steps, validation checks, and reviewable outputs.
Webhook automation workflow
Receive signed events, validate payloads, route work to the right Birk model, and retry only the failed step.
Start a workflow
with Birk
Choose the right model, connect your tools, and move reliable AI workflows into production.
Build a workflow