DeepSeek-V3 is the latest model from the DeepSeek team, building upon the instruction following and coding abilities of the previous versions. Pre-trained on nearly 15 trillion tokens, the reported evaluations...
# Запрос к API VEGA через deepseek/deepseek-chat
curl https://api.vega.chat/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $VEGA_API_KEY" \
-d '{
"model": "deepseek/deepseek-chat",
"messages": [
{ "role": "user", "content": "Hello!" }
]
}'