Update api_schemas.py
Browse files- api_schemas.py +10 -0
api_schemas.py
CHANGED
|
@@ -57,4 +57,14 @@ IMAGE_LIST_DESCRIPTION = {
|
|
| 57 |
"multipart_fields": [
|
| 58 |
{"name": "image", "type": "file"}
|
| 59 |
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 60 |
}
|
|
|
|
| 57 |
"multipart_fields": [
|
| 58 |
{"name": "image", "type": "file"}
|
| 59 |
]
|
| 60 |
+
}
|
| 61 |
+
|
| 62 |
+
ADD_OCR_CHARACTERS = {
|
| 63 |
+
"method": "POST",
|
| 64 |
+
"path": "/api/add_ocr_characters_to_image",
|
| 65 |
+
"multipart_fields": [
|
| 66 |
+
{"name": "image", "type": "file"},
|
| 67 |
+
{"name": "informacion_image", "type": "string"},
|
| 68 |
+
{"name": "face_col", "type": "string"}
|
| 69 |
+
]
|
| 70 |
}
|