DeepSeek R1 Distill Llama 70B
DeepSeek logo

DeepSeek R1 Distill Llama 70B

deepseek-r1-distill-llama-70b
DeepSeek
Provided by Groq, the DeepSeek-R1-Distill model is fine-tuned based on an open-source model, using samples generated by DeepSeek-R1. We have made slight modifications to their configurations and tokenizers. Please use our settings to run these models.

Pricing

  • Input Tokens: $0.800 /M tokens
  • Output Tokens: $1.600 /M tokens

Input Modalities

  • Text

Output Modalities

  • Text

Capabilities

  • Thinking

Try this model

Python
import os
from openai import OpenAI

client = OpenAI(
    api_key=os.environ["AIHUBMIX_API_KEY"],
    base_url="https://aihubmix.com/v1",
)

response = client.chat.completions.create(
    model="deepseek-r1-distill-llama-70b",
    messages=[
      {
        "role": "user",
        "content": "Hello, how are you?"
      }
    ],
    max_tokens=1024,
    stream=False,
)

print(response.choices[0].message.content)

Frequently asked questions

What is DeepSeek R1 Distill Llama 70B?

Provided by Groq, the DeepSeek-R1-Distill model is fine-tuned based on an open-source model, using samples generated by DeepSeek-R1. We have made slight modifications to their configurations and tokenizers. Please use our settings to run these models.