Use these in any OpenAI-compatible coding tool.
https://ajulic.com/v1your ajulic API keyajulic-coderDon't have a key yet? Request access.
https://ajulic.com/v1.ajulic-coder, and enable it.ajulic-coder in the chat/model picker.Add to ~/.continue/config.json:
{
"models": [
{
"title": "ajulic-coder",
"provider": "openai",
"model": "ajulic-coder",
"apiKey": "YOUR_AJULIC_KEY",
"apiBase": "https://ajulic.com/v1"
}
]
}
Provider: OpenAI Compatible · Base URL: https://ajulic.com/v1 · API key: your key · Model ID: ajulic-coder.
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.
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.
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
}'