Appearance
Foundation models
GPT
POST
/v2/ai/gpt
Отправить запрос GPT модели.
Headers
Name | Value |
---|---|
Content-Type | application/json |
Authorization | Bearer <token> |
Body
Name | Type | Description |
---|---|---|
text | string | Запрос |
Response
json
{
"status": "OK",
"model": "leecybergpt/latest",
"temperature": 1,
"question": "Привет",
"answer": "Привет! Как я могу вам помочь?",
"id": 1
}
Check
POST
/v2/ai/check
Запрос в сервис Check.
Headers
Name | Value |
---|---|
Content-Type | application/json |
Authorization | Bearer <token> |
Body
Name | Type | Description |
---|---|---|
text | string | Текст для проверки |
Response
json
{
"status": "OK",
"model": "leecybergpt/latest",
"message": "Привет",
"answer": "Привет!",
"id": 1
}
История запросов
GET
/v2/ai/gpt
Получить историю запросов к GPT.
Headers
Name | Value |
---|---|
Content-Type | application/json |
Authorization | Bearer <token> |
Response
json
[
{
"id": 1,
"question": "Привет",
"answer": "Привет"
}
]