Reka Flash 3 is a general-purpose, instruction-tuned large language model with 21 billion parameters, developed by Reka. It excels at general chat, coding tasks, instruction-following, and function calling. Featuring a...
# Запрос к API VEGA через rekaai/reka-flash-3
curl https://api.vega.chat/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $VEGA_API_KEY" \
-d '{
"model": "rekaai/reka-flash-3",
"messages": [
{ "role": "user", "content": "Hello!" }
]
}'