2023-09-07 11:36:39 +00:00
|
|
|
App currently has two main api endpoints:
|
|
|
|
|
|
|
|
### /api/answer
|
|
|
|
Its a POST request that sends a JSON in body with 4 values. Here is a JavaScript fetch example
|
2023-10-01 15:25:23 +00:00
|
|
|
It will receive an answer for a user provided question
|
2023-09-07 11:36:39 +00:00
|
|
|
|
2023-09-16 00:18:01 +00:00
|
|
|
```js
|
2023-09-07 11:36:39 +00:00
|
|
|
// answer (POST http://127.0.0.1:5000/api/answer)
|
|
|
|
fetch("http://127.0.0.1:5000/api/answer", {
|
|
|
|
"method": "POST",
|
|
|
|
"headers": {
|
|
|
|
"Content-Type": "application/json; charset=utf-8"
|
|
|
|
},
|
|
|
|
"body": JSON.stringify({"question":"Hi","history":null,"api_key":"OPENAI_API_KEY","embeddings_key":"OPENAI_API_KEY",
|
|
|
|
"active_docs": "javascript/.project/ES2015/openai_text-embedding-ada-002/"})
|
|
|
|
})
|
|
|
|
.then((res) => res.text())
|
|
|
|
.then(console.log.bind(console))
|
|
|
|
```
|
|
|
|
|
|
|
|
In response you will get a json document like this one:
|
|
|
|
|
2023-09-16 00:18:01 +00:00
|
|
|
```json
|
2023-09-07 11:36:39 +00:00
|
|
|
{
|
|
|
|
"answer": " Hi there! How can I help you?\n",
|
|
|
|
"query": "Hi",
|
|
|
|
"result": " Hi there! How can I help you?\nSOURCES:"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### /api/docs_check
|
2023-10-01 15:25:23 +00:00
|
|
|
It will make sure documentation is loaded on a server (just run it every time user is switching between libraries (documentations)
|
2023-09-07 11:36:39 +00:00
|
|
|
Its a POST request that sends a JSON in body with 1 value. Here is a JavaScript fetch example
|
|
|
|
|
2023-09-16 00:18:01 +00:00
|
|
|
```js
|
2023-09-07 11:36:39 +00:00
|
|
|
// answer (POST http://127.0.0.1:5000/api/docs_check)
|
|
|
|
fetch("http://127.0.0.1:5000/api/docs_check", {
|
|
|
|
"method": "POST",
|
|
|
|
"headers": {
|
|
|
|
"Content-Type": "application/json; charset=utf-8"
|
|
|
|
},
|
|
|
|
"body": JSON.stringify({"docs":"javascript/.project/ES2015/openai_text-embedding-ada-002/"})
|
|
|
|
})
|
|
|
|
.then((res) => res.text())
|
|
|
|
.then(console.log.bind(console))
|
|
|
|
```
|
|
|
|
|
|
|
|
In response you will get a json document like this one:
|
2023-09-16 00:18:01 +00:00
|
|
|
```json
|
2023-09-07 11:36:39 +00:00
|
|
|
{
|
|
|
|
"status": "exists"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
### /api/combine
|
|
|
|
Provides json that tells UI which vectors are available and where they are located with a simple get request
|
|
|
|
|
|
|
|
Respsonse will include:
|
|
|
|
date, description, docLink, fullName, language, location (local or docshub), model, name, version
|
|
|
|
|
|
|
|
Example of json in Docshub and local:
|
|
|
|
<img width="295" alt="image" src="https://user-images.githubusercontent.com/15183589/224714085-f09f51a4-7a9a-4efb-bd39-798029bb4273.png">
|
|
|
|
|
|
|
|
|
|
|
|
### /api/upload
|
|
|
|
Uploads file that needs to be trained, response is json with task id, which can be used to check on tasks progress
|
|
|
|
HTML example:
|
|
|
|
|
2023-09-16 00:18:01 +00:00
|
|
|
```html
|
2023-09-07 11:36:39 +00:00
|
|
|
<form action="/api/upload" method="post" enctype="multipart/form-data" class="mt-2">
|
|
|
|
<input type="file" name="file" class="py-4" id="file-upload">
|
|
|
|
<input type="text" name="user" value="local" hidden>
|
|
|
|
<input type="text" name="name" placeholder="Name:">
|
|
|
|
|
|
|
|
|
|
|
|
<button type="submit" class="py-2 px-4 text-white bg-blue-500 rounded-md hover:bg-blue-600 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500">
|
|
|
|
Upload
|
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
2023-09-16 00:18:01 +00:00
|
|
|
```json
|
2023-09-07 11:36:39 +00:00
|
|
|
{
|
|
|
|
"status": "ok",
|
|
|
|
"task_id": "b2684988-9047-428b-bd47-08518679103c"
|
|
|
|
}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
### /api/task_status
|
|
|
|
Gets task status (task_id) from /api/upload
|
2023-09-16 00:18:01 +00:00
|
|
|
```js
|
2023-09-07 11:36:39 +00:00
|
|
|
// Task status (Get http://127.0.0.1:5000/api/task_status)
|
|
|
|
fetch("http://localhost:5001/api/task_status?task_id=b2d2a0f4-387c-44fd-a443-e4fe2e7454d1", {
|
|
|
|
"method": "GET",
|
|
|
|
"headers": {
|
|
|
|
"Content-Type": "application/json; charset=utf-8"
|
|
|
|
},
|
|
|
|
})
|
|
|
|
.then((res) => res.text())
|
|
|
|
.then(console.log.bind(console))
|
|
|
|
```
|
|
|
|
|
|
|
|
Responses:
|
2023-10-01 15:25:23 +00:00
|
|
|
There are two types of responses:
|
2023-09-07 11:36:39 +00:00
|
|
|
1. while task it still running, where "current" will show progress from 0 - 100
|
2023-09-16 00:18:01 +00:00
|
|
|
```json
|
2023-09-07 11:36:39 +00:00
|
|
|
{
|
|
|
|
"result": {
|
|
|
|
"current": 1
|
|
|
|
},
|
|
|
|
"status": "PROGRESS"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
2. When task is completed
|
2023-09-16 00:18:01 +00:00
|
|
|
```json
|
2023-09-07 11:36:39 +00:00
|
|
|
{
|
|
|
|
"result": {
|
|
|
|
"directory": "temp",
|
|
|
|
"filename": "install.rst",
|
|
|
|
"formats": [
|
|
|
|
".rst",
|
|
|
|
".md",
|
|
|
|
".pdf"
|
|
|
|
],
|
|
|
|
"name_job": "somename",
|
|
|
|
"user": "local"
|
|
|
|
},
|
|
|
|
"status": "SUCCESS"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### /api/delete_old
|
|
|
|
deletes old vecotstores
|
2023-09-16 00:18:01 +00:00
|
|
|
```js
|
2023-09-07 11:36:39 +00:00
|
|
|
// Task status (GET http://127.0.0.1:5000/api/docs_check)
|
|
|
|
fetch("http://localhost:5001/api/task_status?task_id=b2d2a0f4-387c-44fd-a443-e4fe2e7454d1", {
|
|
|
|
"method": "GET",
|
|
|
|
"headers": {
|
|
|
|
"Content-Type": "application/json; charset=utf-8"
|
|
|
|
},
|
|
|
|
})
|
|
|
|
.then((res) => res.text())
|
|
|
|
.then(console.log.bind(console))
|
|
|
|
```
|
|
|
|
response:
|
|
|
|
|
2023-09-16 00:18:01 +00:00
|
|
|
```json
|
|
|
|
{ "status": "ok" }
|
2023-09-07 11:36:39 +00:00
|
|
|
```
|