DeepSeek R1 Distill Llama 70B is a distilled large language model based on [Llama-3.3-70B-Instruct](/meta-llama/llama-3.3-70b-instruct), using outputs from [DeepSeek R1](/deepseek/deepseek-r1). The model combines advanced distillation techniques to achieve high performance across...
# Запрос к API VEGA через deepseek/deepseek-r1-distill-llama-70b
curl https://api.vega.chat/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $VEGA_API_KEY" \
-d '{
"model": "deepseek/deepseek-r1-distill-llama-70b",
"messages": [
{ "role": "user", "content": "Hello!" }
]
}'