Cline
IDE extension. An autonomous agent right in your editor, running on your ApiMira key.
Cline is an agent inside your editor: it reads files, edits them and runs commands. It connects as "OpenAI Compatible".
What you need
- Base URL
- https://apimira.com/v1
- API key
- am-YOUR_KEYCreated in the dashboard, the API keys section. The full value is shown once.
- Model ID
- google/gemini-3.7-flashCopy it from the catalogue in full, including the prefix before the slash.
How to connect
- 1Open Cline settings — the gear icon in the extension panel.
- 2Pick "OpenAI Compatible" in the API Provider list.
- 3Base URL is the gateway address with /v1, API Key is your ApiMira key.
- 4Type the Model ID from the catalogue: Cline does not fetch model lists from every provider.
- 5Start a task: the agent runs on function calling, which the gateway supports.
API Provider: OpenAI Compatible
Base URL: https://apimira.com/v1
API Key: am-YOUR_KEY
Model ID: openai/gpt-6-astraFeatures that send the model an image — browser use, screenshots — work with models marked "Sees images" on the Models page. The image travels as a content part of type image_url with a data:image/png;base64,… URL; remote URLs are not fetched. If the selected model does not accept images, the request returns unsupported_capability naming the model — pick another one on the Models page.
Function calling is supported, so agentic modes work. Strict JSON mode (response_format) and the retired functions format are rejected with an unsupported_parameter error — the parameter is never silently dropped. Image input is accepted by models marked "Sees images" on the Models page: a content part of type image_url with a data:image/png;base64,… URL (PNG, JPEG or WebP, up to 5 MB each, up to 50 per request). Remote URLs are not fetched, and a model without that mark answers with unsupported_capability — both errors name the reason outright.