rairo commited on
Commit
e012855
·
verified ·
1 Parent(s): 5f2f34f

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +5 -0
main.py CHANGED
@@ -24,6 +24,11 @@ load_dotenv()
24
 
25
  app = Flask(__name__)
26
 
 
 
 
 
 
27
  @app.route("/predict", methods=["POST"])
28
  def bot(json_table, user_question):
29
  load_dotenv()
 
24
 
25
  app = Flask(__name__)
26
 
27
+ @app.route("/", methods=["GET"])
28
+ def home():
29
+
30
+ return "Hello Qx!"
31
+
32
  @app.route("/predict", methods=["POST"])
33
  def bot(json_table, user_question):
34
  load_dotenv()