Models / Arcee AI
Code
Chat

Arcee AI Coder-Large

32B model based on Qwen2.5-Instruct, fine-tuned for code generation and debugging, ideal for advanced development tasks.

About model

Arcee AI Coder-Large generates high-quality code in various programming languages, excelling at complex coding tasks. It assists professional developers and experienced coders with large-scale projects. Designed for advanced users.

  • API usage

    • cURL
    • Python
    • Typescript

    Endpoint:

    arcee-ai/coder-large

    curl -X POST https://api.together.xyz/v1/chat/completions \
      -H "Content-Type: application/json" \
      -H "Authorization: Bearer $TOGETHER_API_KEY" \
      -d '{
        "model": "arcee-ai/coder-large",
        "messages": [{
          "role": "user",
          "content": "Given two binary strings `a` and `b`, return their sum as a binary string"
        }]
      }'
    
    from together import Together
    
    client = Together()
    response = client.chat.completions.create(
      model="arcee-ai/coder-large",
      messages=[
      	{
    	    "role": "user", 
          "content": "Given two binary strings `a` and `b`, return their sum as a binary string"
        }
     ],
    )
    
    print(response.choices[0].message.content)
    
    
    import Together from "together-ai";
    
    const together = new Together();
    
    async function main() {
      const response = await together.chat.completions.create({
        model: "arcee-ai/coder-large",
        messages: [{
          role: "user",
          content: "Given two binary strings `a` and `b`, return their sum as a binary string"
        }]
      });
      
      console.log(response.choices[0]?.message?.content);
    }
    
    main();
    
    
Related models
  • Model provider
    Arcee AI
  • Type
    Code
    Chat
  • Main use cases
    Chat
    Coding Agents
  • Features
    JSON Mode
  • Deployment
    Serverless
    On-Demand Dedicated
    Monthly Reserved
  • Parameters
    32B
  • Context length
    32K
  • Input price

    $0.50 / 1M tokens

  • Output price

    $0.80 / 1M tokens

  • Input modalities
    Text
  • Output modalities
    Text