Skip to content
OpenKey

Coder Large

Arcee AIReleased May 5, 2025

Coder‑Large is a 32 B‑parameter offspring of Qwen 2.5‑Instruct that has been further trained on permissively‑licensed GitHub, CodeSearchNet and synthetic bug‑fix corpora. It supports a 32k context window, enabling multi‑file...

Try in playground
Context window
33K tokens
Input
text
Output
text
Tokenizer
Other
Knowledge cutoff
Mar 31, 2025
Released
May 5, 2025

Pricing

Per 1M tokens. The provider price and our flat 3% fee are separate columns — what you pay is their sum.

Per 1M tokensProvider+ 3% feeYou pay
Input$0.500$0.015$0.515
Output$0.800$0.024$0.824

Supported parameters

  • frequency_penalty
  • logit_bias
  • max_tokens
  • min_p
  • presence_penalty
  • repetition_penalty
  • stop
  • temperature
  • top_k
  • top_p

Call it

OpenAI-compatible: point your SDK at api.openkey.ai/v1 and use model arcee-ai/coder-large.

Code sample language
curl https://api.openkey.ai/v1/chat/completions \
  -H "Authorization: Bearer $OPENKEY_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "arcee-ai/coder-large",
    "messages": [{"role": "user", "content": "Hello"}]
  }'
import os
from openai import OpenAI

client = OpenAI(
    base_url="https://api.openkey.ai/v1",
    api_key=os.environ["OPENKEY_API_KEY"],
)

completion = client.chat.completions.create(
    model="arcee-ai/coder-large",
    messages=[{"role": "user", "content": "Hello"}],
)
print(completion.choices[0].message.content)
import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://api.openkey.ai/v1",
  apiKey: process.env.OPENKEY_API_KEY,
});

const completion = await client.chat.completions.create({
  model: "arcee-ai/coder-large",
  messages: [{ role: "user", content: "Hello" }],
});
console.log(completion.choices[0].message.content);

Questions

How much does Coder Large cost via API?
Through OpenKey, Coder Large costs $0.515 per 1M input tokens and $0.824 per 1M output tokens. That is the provider price ($0.500 / $0.800) plus a flat 3% fee — nothing else.
What is Coder Large's context window?
Coder Large accepts up to 33K tokens of context.
Is Coder Large OpenAI-compatible?
Yes. Send requests to OpenKey's /v1/chat/completions endpoint with model "arcee-ai/coder-large" using any OpenAI SDK — only the base URL and API key change.
What inputs does Coder Large support?
Coder Large accepts text input and produces text output. Its knowledge cutoff is Mar 31, 2025.

More from Arcee AI

All Arcee AI models →