Models / Meta
LLM

Llama 3.3 70B

70B multilingual LLM, pretrained and instruction-tuned, excels in dialogue use cases, surpassing open and closed models.

About model

Llama 3.3 70B provides high-quality, instruction-following responses, excelling at understanding and generating human-like text. Its key strength lies in its ability to process and respond to complex, nuanced prompts. It is suitable for developers and businesses requiring advanced language understanding and generation capabilities.

  • API usage

    • cURL
    • Python
    • Typescript

    Endpoint:

    meta-llama/Llama-3.3-70B-Instruct-Turbo

    curl -X POST "https://api.together.xyz/v1/chat/completions" \
      -H "Authorization: Bearer $TOGETHER_API_KEY" \
      -H "Content-Type: application/json" \
      -d '{
        "model": "meta-llama/Llama-3.3-70B-Instruct-Turbo",
        "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="meta-llama/Llama-3.3-70B-Instruct-Turbo",
      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: 'meta-llama/Llama-3.3-70B-Instruct-Turbo',
      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
    Meta
  • Type
    LLM
  • Main use cases
    Chat
    Medium General Purpose
    Function Calling
  • Features
    Function Calling
    JSON Mode
  • Deployment
    Serverless
    On-Demand Dedicated
    Monthly Reserved
  • Parameters
    70B
  • Context length
    128K
  • Input price

    $0.88 / 1M tokens

  • Output price

    $0.88 / 1M tokens

  • Input modalities
    Text
  • Output modalities
    Text
  • Released
    December 5, 2024
  • Quantization level
    FP8
  • External link
  • Category
    Chat