GPT-4.1 is a flagship large language model optimized for advanced instruction following, real-world software engineering, and long-context reasoning. It supports a 1 million token context window and outperforms GPT-4o and...
# Запрос к API VEGA через openai/gpt-4.1
curl https://api.vega.chat/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $VEGA_API_KEY" \
-d '{
"model": "openai/gpt-4.1",
"messages": [
{ "role": "user", "content": "Hello!" }
]
}'