Skip to content

Foundation models

GPT

POST /v2/ai/gpt
Отправить запрос GPT модели.

Headers

NameValue
Content-Typeapplication/json
AuthorizationBearer <token>

Body

NameTypeDescription
textstringЗапрос

Response

json
{
    "status": "OK",
    "model": "leecybergpt/latest",
    "temperature": 1,
    "question": "Привет",
    "answer": "Привет! Как я могу вам помочь?",
    "id": 1
}

Check

POST /v2/ai/check
Запрос в сервис Check.

Headers

NameValue
Content-Typeapplication/json
AuthorizationBearer <token>

Body

NameTypeDescription
textstringТекст для проверки

Response

json
{
    "status": "OK",
    "model": "leecybergpt/latest",
    "message": "Привет",
    "answer": "Привет!",
    "id": 1
}

История запросов

GET /v2/ai/gpt
Получить историю запросов к GPT.

Headers

NameValue
Content-Typeapplication/json
AuthorizationBearer <token>

Response

json
[
    {
        "id": 1,
        "question": "Привет",
        "answer": "Привет"
    }
]