A fast, high-quality AI model for coding — drop it into the tools you already use.
OpenAI-compatible API Streaming Tool / agent support 128k context

Connection details

Use these in any OpenAI-compatible coding tool.

Base URL
https://ajulic.com/v1
API key
your ajulic API key
Model
ajulic-coder

Don't have a key yet? Request access.

Set up your tool

Cursor

  1. Open Settings → Models.
  2. Under OpenAI API Key, click Override base URL and set it to https://ajulic.com/v1.
  3. Paste your ajulic API key and click Verify.
  4. Click + Add model, name it ajulic-coder, and enable it.
  5. Select ajulic-coder in the chat/model picker.

VS Code — Continue

Add to ~/.continue/config.json:

{
  "models": [
    {
      "title": "ajulic-coder",
      "provider": "openai",
      "model": "ajulic-coder",
      "apiKey": "YOUR_AJULIC_KEY",
      "apiBase": "https://ajulic.com/v1"
    }
  ]
}

VS Code — Cline / Roo

Provider: OpenAI Compatible · Base URL: https://ajulic.com/v1 · API key: your key · Model ID: ajulic-coder.

OpenCode

Add an OpenAI-compatible provider in opencode.json:

{
  "provider": {
    "ajulic": {
      "npm": "@ai-sdk/openai-compatible",
      "options": { "baseURL": "https://ajulic.com/v1", "apiKey": "YOUR_AJULIC_KEY" },
      "models": { "ajulic-coder": { "name": "ajulic-coder" } }
    }
  }
}

Then select ajulic/ajulic-coder.

Zed

In settings.json:

{
  "language_models": {
    "openai_compatible": {
      "ajulic": {
        "api_url": "https://ajulic.com/v1",
        "available_models": [
          { "name": "ajulic-coder", "max_tokens": 128000 }
        ]
      }
    }
  }
}

Add your key when prompted, then pick ajulic-coder in the assistant panel.

Any OpenAI-compatible tool

Point it at the base URL and model below, or call it directly:

curl https://ajulic.com/v1/chat/completions \
  -H "Authorization: Bearer YOUR_AJULIC_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "ajulic-coder",
    "messages": [{ "role": "user", "content": "Write a Python function to reverse a string." }],
    "stream": true
  }'