Coder Large

Other chattool_usecode

API ID: arcee-ai/coder-large

Input Price
$0.50
/1M tokens
Output Price
$0.80
/1M tokens

About Coder Large

Coder Large is Arcee AI's coding model, optimized for software development tasks. The model excels at code generation and completion. Coder Large demonstrates Arcee's focus on development tools. For developers seeking enterprise coding AI, Coder Large offers software development assistance.

💰
Price Ranking
#764 lowest price among 950 Chat models

Model Specifications

Context Length
33k
Max Output
—
Release Date
2025-05-05
Capabilities
chat tool_use code
Input Modalities
text
Output Modalities
text

Best For

  • Code generation, debugging, code review, refactoring
  • Conversations, content writing, general assistance

Consider Alternatives For

  • Image understanding (needs vision capability)

💰 Real-World Cost Examples

Estimated monthly costs for common use cases

Personal AI Assistant
$0.46
/month
50 conversations/day, ~500 tokens each
Code Copilot
$4.32
/month
200 completions/day, ~1k tokens each
Customer Service Bot
$14.70
/month
1000 tickets/day, ~800 tokens each
Data Analysis Pipeline
$20.85
/month
500 analyses/day, ~2k tokens each

Other Model Lineup

Compare all models from Other to find the best fit

Model Input Output Context Capabilities
Coder Large Current Free Free 33k chat tool_use code
Riverflow V2 Max Preview Free Free 8k chat vision image_gen
Riverflow V2 Standard Preview Free Free 8k chat vision image_gen
Riverflow V2 Fast Preview Free Free 8k chat vision image_gen
AFM 4.5B Free Free 66k chat
AFM 4.5B Free Free 66k chat

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

Google Gemma 2 27B
Input: $0.65
Output: $0.65
Context: 8k
MiniMax MiniMax-01
Input: $0.20
Output: $1.10
Context: 1.0M
MiniMax MiniMax M2
Input: $0.26
Output: $1.00
Context: 197k
Meta Llama 3 70B Instruct
Input: $0.51
Output: $0.74
Context: 8k

🚀 Quick Start

Get started with Coder Large API

OpenAI-compatible SDK
from openai import OpenAI

client = OpenAI(
    base_url="https://api.provider.com/v1",
    api_key="YOUR_API_KEY"
)

response = client.chat.completions.create(
    model="arcee-ai/coder-large",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)