Kimi K2 Instruct is a large-scale Mixture-of-Experts (MoE) language model developed by Moonshot AI, featuring 1 trillion total parameters with 32 billion active per forward pass. It is optimized for...
# Запрос к API VEGA через moonshotai/kimi-k2
curl https://api.vega.chat/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $VEGA_API_KEY" \
-d '{
"model": "moonshotai/kimi-k2",
"messages": [
{ "role": "user", "content": "Hello!" }
]
}'