> MODEL_REGISTRY
Robi exposes a focused lineup of hosted models. Pick the tier that matches your latency, quality and cost requirements, then call it through the same https://api.robiai.com/v1 surface.
Start with a sensible default, then move workloads up or down the stack as you learn more about quality vs. spend.
Every model is addressable by name and can be swapped without touching your product code — just update the mapping in Robi.
lexa-mml
FlagshipMost capable hosted model for complex reasoning, tools and analysis.
Ideal for
lexa-x1
DefaultFast, cost-effective model tuned for everyday workloads.
Ideal for
Keep your applications pointed at a stable alias and let Robi handle the mapping to underlying hosted models as they evolve.
Example request
curl -X POST https://api.robiai.com/v1/chat/completions \
-H "Authorization: Bearer robi_sk_..." \
-H "Content-Type: application/json" \
-d '{
"model": "lexa-x1",
"messages": [{ "role": "user", "content": "Which Robi model should I use?" }]
}'