Models / Arcee AI
LLM

Arcee AI Virtuoso-Medium

Versatile 32B SLM built for precision and adaptability across domains, ideal for dynamic, compute-intensive use cases.

About model

Arcee AI Virtuoso-Medium excels in advanced reasoning for technical and scientific queries, complex code generation, and mathematical problem-solving. It is suited for applications such as chatbots, enterprise data analysis, and research simulations.

  • API usage

    • cURL
    • Python
    • Typescript

    Endpoint:

    arcee-ai/virtuoso-medium-v2

    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-medium-v2",
        "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-medium-v2",
      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-medium-v2',
      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
    Medium General Purpose
  • Deployment
    Serverless
    Monthly Reserved
  • Parameters
    32.8B
  • Context Length
    128k
  • Input modalities
    Text
  • Output modalities
    Text