The latest GPT-4 Turbo model with vision capabilities. Vision requests can now use JSON mode and function calling.
Training data: up to December 2023.
# Запрос к API VEGA через openai/gpt-4-turbo
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-turbo",
"messages": [
{ "role": "user", "content": "Hello!" }
]
}'