Gowtham122 commited on
Commit
e90a10b
·
verified ·
1 Parent(s): e6d98e1

create config.py

Browse files
Files changed (1) hide show
  1. app/config.py +7 -0
app/config.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ class Config:
2
+ qa_model_path = "deepset/roberta-base-squad2" # Example QA model
3
+ AIP_HEALTH_ROUTE = "/health"
4
+ AIP_HTTP_PORT = 8000
5
+ DEBUG = True
6
+
7
+ CONFIG = Config()