mashaelalbu commited on
Commit
6b0b35c
·
verified ·
1 Parent(s): ec2c5f3

Update app/config.py

Browse files
Files changed (1) hide show
  1. app/config.py +8 -6
app/config.py CHANGED
@@ -1,6 +1,8 @@
1
- import os
2
-
3
- class Config:
4
- SECRET_KEY = os.environ.get('SECRET_KEY') or 'your-secret-key'
5
- UPLOAD_FOLDER = 'instance/uploads'
6
- MAX_CONTENT_LENGTH = 16 * 1024 * 1024 # 16MB max file size
 
 
 
1
+ import os
2
+
3
+ class Config:
4
+ SECRET_KEY = os.environ.get('SECRET_KEY') or 'your-secret-key'
5
+ UPLOAD_FOLDER = 'instance/uploads'
6
+ MAX_CONTENT_LENGTH = 16 * 1024 * 1024 # 16MB max file size
7
+ ALLERGY_DATASET_PATH = os.path.join(os.path.dirname(__file__), 'data/15_March_Fully_Ingredients_Dataset.xlsx')
8
+ CLAUDE_API_KEY = os.environ.get('CLAUDE_API_KEY', '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')