Ollima is an OpenAI-compatible router. Point any tool — Cline, Aider, Cursor, or your own code — at one endpoint and one key.
Any OpenAI-compatible tool works — set the base URL and your key:
from openai import OpenAI
client = OpenAI(
base_url="https://api.ollima.com/v1",
api_key="sk-t0-...", # from https://app.ollima.com
)
r = client.chat.completions.create(
model="deepseek-v4",
messages=[{"role": "user", "content": "Write a binary search in Python."}],
)
print(r.choices[0].message.content)