Claude Opus 4 is benchmarked as the world’s best coding model, at time of release, bringing sustained performance on complex, long-running tasks and agent workflows. It sets new benchmarks in...
# Запрос к API VEGA через anthropic/claude-opus-4
curl https://api.vega.chat/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $VEGA_API_KEY" \
-d '{
"model": "anthropic/claude-opus-4",
"messages": [
{ "role": "user", "content": "Hello!" }
]
}'