The 2024-11-20 version of GPT-4o offers a leveled-up creative writing ability with more natural, engaging, and tailored writing to improve relevance & readability. It’s also better at working with uploaded...
# Запрос к API VEGA через openai/gpt-4o-2024-11-20
curl https://api.vega.chat/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $VEGA_API_KEY" \
-d '{
"model": "openai/gpt-4o-2024-11-20",
"messages": [
{ "role": "user", "content": "Hello!" }
]
}'