ORYNX

Continue

Add ORYNX models to Continue in VS Code or JetBrains.

Add the models to ~/.continue/config.yaml (%USERPROFILE%\.continue\config.yaml on Windows). A new file also needs the name, version and schema lines.

~/.continue/config.yaml
name: Main Config
version: 1.0.0
schema: v1
models:
  - name: ORYNX Kimi K3
    provider: openai
    model: kimi-k3
    apiBase: https://api.orynx.dev/v1
    apiKey: ${{ secrets.ORYNX_API_KEY }}
  - name: ORYNX Sonnet 5
    provider: anthropic
    model: claude-sonnet-5
    apiBase: https://api.orynx.dev/v1/
    apiKey: ${{ secrets.ORYNX_API_KEY }}
  - name: ORYNX GPT-5.5
    provider: openai
    model: gpt-5.5
    apiBase: https://api.orynx.dev/v1
    apiKey: ${{ secrets.ORYNX_API_KEY }}

With provider: anthropic, the apiBase must include /v1. Continue appends messages to it, unlike the Anthropic SDKs, which take the host only.

Put the key in ~/.continue/.env, without quotes:

~/.continue/.env
ORYNX_API_KEY=sk-orynx-...

Restart the IDE after you change the file. The VS Code and JetBrains extensions do not read environment variables from your shell.