Models / Arcee AI
Chat
Vision

Arcee AI Spotlight

8B vision-language model based on Qwen2.5-VL, refined by Arcee AI for visual tasks with a 128K context length for rich interaction.

About model

Arcee AI Spotlight analyzes text to identify key information and main ideas, excelling at summarization and content extraction for developers and data analysts.

  • API usage

    • cURL
    • Python
    • Typescript

    Endpoint:

    arcee_ai/arcee-spotlight

    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/arcee-spotlight",
        "messages": [{
          "role": "user",
          "content": [
            {"type": "text", "text": "Describe what you see in this image."},
            {"type": "image_url", "image_url": {"url": "https://huggingface.co/datasets/patrickvonplaten/random_img/resolve/main/yosemite.png"}}
          ]
        }],
        "max_tokens": 512
      }'
    
    from together import Together
    
    client = Together()
    
    response = client.chat.completions.create(
        model="arcee_ai/arcee-spotlight",
        messages=[{
        	"role": "user",
          "content": [
            {"type": "text", "text": "Describe what you see in this image."},
            {"type": "image_url", "image_url": {"url": "https://huggingface.co/datasets/patrickvonplaten/random_img/resolve/main/yosemite.png"}}
          ]
        }]
    )
    print(response.choices[0].message.content)
    
    
    import Together from "together-ai";
    
    const together = new Together();
    const imageUrl = "https://huggingface.co/datasets/patrickvonplaten/random_img/resolve/main/yosemite.png";
    
    async function main() {
      const response = await together.chat.completions.create({
        model: "arcee_ai/arcee-spotlight",
        messages: [{
          role: "user",
          content: [
            { type: "text", text: "Describe what you see in this image." },
            { type: "image_url", image_url: { url: imageUrl } }
          ]
        }]
      });
      
      console.log(response.choices[0]?.message?.content);
    }
    
    main();
    
    
Related models
  • Model provider
    Arcee AI
  • Type
    Chat
    Vision
  • Main use cases
    Chat
    Vision
  • Features
    JSON Mode
  • Deployment
    Serverless
    On-Demand Dedicated
    Monthly Reserved
  • Parameters
    8.29B
  • Context length
    128K
  • Input modalities
    Text
    Image
  • Output modalities
    Text