Skip to main content
Valkyrie serves models through the OpenAI Chat Completions API, so any client that lets you set a base URL and API key can talk to a Valkyrie deployment.

The three values you need

The deployment slug looks like deployment-{id} (for example deployment-213). With an alias, the base URL becomes https://valkyrie-back.azumo.com/{account_slug}/{alias}/v1.

Official OpenAI SDKs

LangChain

Anything else

Any app with an “OpenAI-compatible” or “custom OpenAI endpoint” setting works the same way, LibreChat, Open WebUI, editor plugins, and more. Set the base URL, key, and model name as above.
Set stream: true for token streaming. See Run inference for a streaming example and Errors for handling failures.