Register LLM providers so agents can use them for inference.
The Models Registry connects LLM providers to the Alquimia Runtime. Each entry tells the Runtime which provider class to use, what model to call, and how to authenticate.
All providers use the OpenAI-compatible interface under the hood. If your provider supports OpenAI-compatible endpoints, you can register it by setting the Base URL to your provider’s endpoint and using the openai provider type.
When you save a model with an API key, Studio automatically:
Stores the key in the Registry secrets store with a name based on the provider (e.g., ANTHROPIC_API_KEY)
Replaces the raw key in the model config with $ANTHROPIC_API_KEY
The raw key is never stored in plain text after this point. See Secrets for how this works.To rotate a key: Edit the model and enter the new API key. The secret is updated and all agents using that model pick up the new key automatically.