Models / Arcee AI
LLM

Arcee AI Virtuoso-Large

Arcee AI's most powerful 72B SLM, built for complex, cross-domain tasks and scalable enterprise-grade AI solutions.

About model

Arcee AI Virtuoso-Large excels at handling complex tasks across domains with state-of-the-art performance, offering nuanced understanding and high accuracy. It is designed for advanced content creation, data summarization, and knowledge synthesis. Suitable for commercial and non-commercial applications.

  • API usage

    • cURL
    • Python
    • Typescript

    Endpoint:

    arcee-ai/virtuoso-large

    curl -X POST "https://api.together.xyz/v1/chat/completions" \
      -H "Authorization: Bearer $TOGETHER_API_KEY" \
      -H "Content-Type: application/json" \
      -d '{
        "model": "arcee-ai/virtuoso-large",
        "messages": [
          {
            "role": "user",
            "content": "What are some fun things to do in New York?"
          }
        ]
    }'
    
    from together import Together
    
    client = Together()
    
    response = client.chat.completions.create(
      model="arcee-ai/virtuoso-large",
      messages=[
        {
          "role": "user",
          "content": "What are some fun things to do in New York?"
        }
      ]
    )
    print(response.choices[0].message.content)
    
    import Together from 'together-ai';
    const together = new Together();
    
    const completion = await together.chat.completions.create({
      model: 'arcee-ai/virtuoso-large',
      messages: [
        {
          role: 'user',
          content: 'What are some fun things to do in New York?'
         }
      ],
    });
    
    console.log(completion.choices[0].message.content);
    
Related models
  • Model provider
    Arcee AI
  • Type
    LLM
  • Main use cases
    Chat
    Function Calling
  • Features
    Function Calling
  • Deployment
    Serverless
    On-Demand Dedicated
    Monthly Reserved
  • Parameters
    72.7B
  • Context length
    128K
  • Input price

    $0.75 / 1M tokens

  • Output price

    $1.20 / 1M tokens

  • Input modalities
    Text
  • Output modalities
    Text