Sovereign Docs

Outil compatible

How to connect common coding tools, SDKs, and chat clients to Sovereign.

This section explains how to connect common tools and SDKs to Sovereign.

Quick Rules

Use the OpenAI-compatible surface for tools that expect:

  • Authorization: Bearer ...
  • /chat/completions or /responses
  • OpenAI-style request and response shapes

Use the Anthropic-compatible surface for tools that expect:

  • x-api-key
  • anthropic-version
  • /v1/messages
  • Anthropic-style streaming events

Base URLs

OpenAI-compatible:    https://api.sovrun.one/v1
Anthropic-compatible: https://api.sovrun.one/anthropic
Model name:           sovereign-alpha

Covered Tools

Anthropic-compatible:

OpenAI-compatible:

Practical Advice

  • Prefer sovereign-alpha everywhere unless a tool requires a local alias.
  • Start with a plain text request before enabling tools, MCP, or agent workflows.
  • If a tool supports both OpenAI-compatible and Anthropic-compatible modes, choose the one that best matches its native feature set.

On this page