This model is a variant of GPT-3.5 Turbo tuned for instructional prompts and omitting chat-related optimizations. Training data: up to Sep 2021.
# Запрос к API VEGA через openai/gpt-3.5-turbo-instruct
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-instruct",
"messages": [
{ "role": "user", "content": "Hello!" }
]
}'