For tasks that demand low latency, GPT‑4.1 nano is the fastest and cheapest model in the GPT-4.1 series. It delivers exceptional performance at a small size with its 1 million...
# Запрос к API VEGA через openai/gpt-4.1-nano
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-nano",
"messages": [
{ "role": "user", "content": "Hello!" }
]
}'