Add OCR, add configuration

This commit is contained in:
reis
2022-11-11 17:29:15 +00:00
parent 9962e4fe68
commit d70fcde227
7 changed files with 146 additions and 71 deletions

View File

@@ -8,7 +8,7 @@ Sending the server this JSON (BSON) will send you back the AI predictions.
```json
{
"event": "ai",
"op": 1,
"id": "String",
"text": "How do i download ReVanced?"
}
@@ -18,7 +18,7 @@ And the server would return something like this:
```json
{
"event": "ai_response",
"op": 2,
"id": "String",
"predictions": [
{
@@ -29,17 +29,13 @@ And the server would return something like this:
}
```
# OCR
Soon:tm:
# Training the AI
To add data to the train data, send a BSON (JSON) like this:
```json
{
"event": "add_train_data",
"op": 3,
"label": "FALSEPOSITIVE",
"text": "how"
}
@@ -49,6 +45,28 @@ To train the AI and to re-load it, send this BSON (JSON):
```json
{
"event": "train_ai"
"event": 4
}
```
# OCR
Sending the server this JSON (BSON) will send you back the read text.
```json
{
"op": 5,
"id": "String",
"url": "https://cdn.discordapp.com/attachments/1033338556493606963/1033338557231796224/Screenshot_20221022-121318.jpg"
}
```
And the server would return something like this:
```json
{
"op": 6,
"id": "String",
"ocrText": "..."
}
```