This model offers four times the context length of gpt-3.5-turbo, allowing it to support approximately 20 pages of text in a single request at a higher cost. Training data: up...
# Запрос к API VEGA через openai/gpt-3.5-turbo-16k
curl https://api.vega.chat/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $VEGA_API_KEY" \
-d '{
"model": "openai/gpt-3.5-turbo-16k",
"messages": [
{ "role": "user", "content": "Hello!" }
]
}'