Use the account you control
Connect supported providers under your own organization. Your provider contract, limits, and upstream charges still belong to that account.
Direct provider accounts can offer the terms or capacity your team needs, but each one has different credentials and failure signals. LLMRegistry puts those accounts behind one request interface and one routing layer.
Your organization owns each connected provider account. Applications use LLMRegistry keys and route names instead of carrying every upstream secret.
Connect supported providers under your own organization. Your provider contract, limits, and upstream charges still belong to that account.
Credentials are encrypted before storage. Lists, audit events, exports, and usage records expose only a safe hint, never the raw provider key.
A route can require your connections or allow pooled capacity as an explicit fallback. The gateway does not silently change modes.
A key that has the right shape is not proof that the provider will accept it.
LLMRegistry checks the provider type, fields, endpoint rules, and credential shape before saving the encrypted connection.
A new or rotated connection stays pending. Structural checks do not label it healthy before real provider work.
The first successful request marks the connection healthy. A provider authentication failure removes the bad credential from dispatch.
Repeated temporary provider failures can open a circuit. Traffic is held back during cooldown, then a limited test checks recovery.
Provider mode is a route decision, so cost and reliability behavior remain clear.
Keep credentials in one encrypted control point and make routing behavior explicit.
Get started