Models & Providers

Configure AI models in your preferred tool to use Aexol.ai's built-in Spectral model or other supported providers.


Aexol.ai Built-in Model

The built-in/spectral model is Aexol's native AI, optimized for understanding and generating Aexol specifications.

Endpoint: https://api.aexol.ai/v1
Model name: built-in/spectral
Auth: Team API key (sk-aexol-team-...)

Get your team API key from the Studio → Team settings.


Claude Code

# Add Aexol as an OpenAI-compatible provider
claude config set --global model aexol/built-in/spectral

Or configure directly in Claude's config with the Aexol.ai base URL and your team API key.

See Working with AI & IDEs for Claude Code MCP setup.


Cursor IDE

In Cursor settings, add a custom model provider:


Windsurf / Codeium

In Windsurf settings, configure a custom AI provider:


Continue (VS Code Extension)

In ~/.continue/config.json:

{
  "models": [
    {
      "title": "Aexol Spectral",
      "provider": "openai",
      "model": "built-in/spectral",
      "apiBase": "https://api.aexol.ai/v1",
      "apiKey": "sk-aexol-team-..."
    }
  ]
}

Other OpenAI-compatible clients

Any client that supports custom OpenAI-compatible endpoints works:

SettingValue
Base URLhttps://api.aexol.ai/v1
API Keysk-aexol-team-...
Modelbuilt-in/spectral

Getting a Team API Key

  1. Open Aexol Studio
  2. Go to Team settingsAPI Keys
  3. Click Create new key
  4. Copy the key — it starts with sk-aexol-team-

Next Steps