DOCUMENTATION
Быстрый старт
AI-FLEX принимает OpenAI-compatible запросы. Создайте API-ключ в кабинете и укажите Base URL https://ai-flex.online/v1.
Chat Completions
const response = await fetch('https://ai-flex.online/v1/chat/completions', {
method: 'POST',
headers: {
'Authorization': 'Bearer sk-...',
'Content-Type': 'application/json'
},
body: JSON.stringify({
model: 'gpt-5.6-luna',
messages: [{ role: 'user', content: 'Hello' }]
})
})