omnara login and omnara config select.
Connect a provider
- API
- Dashboard
The examples assume the client, Keep the returned Presets are available for
$ORG/orgID, and $PROJ/projectID setup from the quickstart.Store the API key as a secret, then create a provider that references it. The preset supplies the endpoint, API format, and authentication settings:id, then:openai, anthropic, and openrouter. For a proxy, local vLLM server, or another compatible endpoint, set the API format, base URL, endpoint path, and authentication method yourself.Omnara fetches the provider’s model catalog when it creates the provider, and on demand with omnara model-providers catalog {model-provider-config-id}, GET …/model-provider-configs/{id}/model-catalog, or sdk.getModelCatalog. The catalog probe can fail without failing the request, which allows private or air-gapped endpoints. Check model_catalog.status; you can configure models manually if needed.A provider cannot be deleted while it still has configured models.Configure models
A configured model (mdl_…) gives a provider model a name and runtime settings. Agent configs use name; Omnara sends provider_model_slug to the provider. Keeping them separate lets you manage provider details centrally.
- API
- Dashboard
mrev_…). Agents resolve the current revision before each model call, so the new settings apply to later calls from existing agents too.
Grant models to projects
A project needs a model grant (pmog_…) before its configs can use the model.
- API
- Dashboard
--max-output-tokens or --no-supports-reasoning flags). Settings you omit inherit from the configured model. omnara grant models list shows a project’s grants and omnara grant models delete {model-grant-id} revokes one.Revoking a grant prevents the project from creating new configs with that model. It does not change agents that already use it.Use it from a config
With the chain complete, this config can now be created in the project:Full schema and playground: Create model provider config · Create configured model · Project model grants.