🔌 Integrations

Conductor API is OpenAI-compatible. Use it anywhere you'd use the OpenAI API.

Base URL: https://api.prefy.com/v1

Cursor

AI code editor — use Conductor as your backend

Settings → Models → Add Model → OpenAI Compatible
Base URL: https://api.prefy.com/v1
API Key: your-conductor-key
Model: conductor:quality
🔌

Cline (VS Code)

Autonomous coding agent in VS Code

Settings → API Provider → OpenAI Compatible
Base URL: https://api.prefy.com/v1
API Key: your-conductor-key
Model: conductor or claude-sonnet
🔄

Continue.dev

Open-source AI code assistant

~/.continue/config.json:
{
  "models": [{
    "provider": "openai",
    "model": "conductor",
    "apiBase": "https://api.prefy.com/v1",
    "apiKey": "your-conductor-key"
  }]
}
🐻

OpenClaw

AI agent framework — use Conductor as model backend

openclaw.yaml:
model: openai/conductor
openai:
  baseUrl: https://api.prefy.com/v1
  apiKey: your-conductor-key
🦜

LangChain / LlamaIndex

Python AI frameworks

from openai import OpenAI
client = OpenAI(
  base_url="https://api.prefy.com/v1",
  api_key="your-conductor-key"
)
response = client.chat.completions.create(
  model="conductor",
  messages=[{"role":"user","content":"Hello!"}]
)
🌐

Any OpenAI SDK

Drop-in replacement — works with any OpenAI-compatible client

curl https://api.prefy.com/v1/chat/completions \
  -H "Authorization: Bearer YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"conductor","messages":[{"role":"user","content":"Hi"}]}'

Need an API key?

Get started →