Spaces:
Sleeping
Sleeping
Update app/utils.py
Browse files- app/utils.py +5 -0
app/utils.py
CHANGED
@@ -13,6 +13,11 @@ from flask import current_app
|
|
13 |
import base64
|
14 |
|
15 |
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
16 |
|
17 |
class OCRModel:
|
18 |
_instance = None
|
|
|
13 |
import base64
|
14 |
|
15 |
logger = logging.getLogger(__name__)
|
16 |
+
FIXED_ALLERGENS = [
|
17 |
+
"dairy", "eggs", "peanuts", "soy",
|
18 |
+
"tree nuts", "wheat", "fish",
|
19 |
+
"shellfish", "sesame"
|
20 |
+
]
|
21 |
|
22 |
class OCRModel:
|
23 |
_instance = None
|