import requests r = requests.post( "https://api.aimlapi.com/v1/chat/completions", headers={"Authorization": "Bearer " + AIMLAPI_KEY}, json={ "model": "arcee-ai/coder-large", "messages": [ { "role": "user", "content": "Hello!" } ] }, ) print(r.json())
const r = await fetch("https://api.aimlapi.com/v1/chat/completions", { method: "POST", headers: { Authorization: `Bearer ${process.env.AIMLAPI_KEY}`, "Content-Type": "application/json", }, body: JSON.stringify({ "model": "arcee-ai/coder-large", "messages": [ { "role": "user", "content": "Hello!" } ] }), }); console.log(await r.json());
curl -X POST https://api.aimlapi.com/v1/chat/completions \ -H "Authorization: Bearer $AIMLAPI_KEY" \ -H "Content-Type: application/json" \ -d '{"model":"arcee-ai/coder-large","messages":[{"role":"user","content":"Hello!"}]}'
OpenAI-compatible — swap the base URL and it works with your existing SDK.
| Type | Price |
|---|---|
| Input | |
| Output | |
| Model | Input | Output | Context | Best for |
|---|---|---|---|---|
Coder Large This page | Reasoning + agents | |||
| Reasoning + agents | ||||
| Balanced coding + agents | ||||
| Long-context, multimodal & agentic workflows | ||||
| Reasoning + agents |
Coder Large has a 32,768 tokens context window.
Coder Large takes image, text as input and returns text.
Use arcee-ai/coder-large as the model id. Requests go to https://api.aimlapi.com/v1/chat/completions.
Coder Large is priced at input $0.65 / 1M, output $1.04 / 1M.
Yes, Coder Large can stream responses as they are generated.
Yes, Coder Large accepts image input alongside text.
It handles chat-based tasks including reasoning, function calling, structured outputs, web search, and processing text, images, and files.
Yes, it supports function calling, parallel tool calls, and structured outputs.