GPT-5.1-Codex-Mini — это более маленькая и быстрая версия GPT-5.1-Codex.
# Запрос к API VEGA через openai/gpt-5.1-codex-mini
curl https://api.vega.chat/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $VEGA_API_KEY" \
-d '{
"model": "openai/gpt-5.1-codex-mini",
"messages": [
{ "role": "user", "content": "Hello!" }
]
}'