Command R7B (12-2024) is a small, fast update of the Command R+ model, delivered in December 2024. It excels at RAG, tool use, agents, and similar tasks requiring complex reasoning...
# Запрос к API VEGA через cohere/command-r7b-12-2024
curl https://api.vega.chat/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $VEGA_API_KEY" \
-d '{
"model": "cohere/command-r7b-12-2024",
"messages": [
{ "role": "user", "content": "Hello!" }
]
}'