Shubham Thakur пре 1 година
родитељ
комит
e3c659f521
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      app.py

+ 1 - 1
app.py

@@ -170,7 +170,7 @@ def add_training_data():
 
 @app.route('/api/v0/generate_followup_questions', methods=['GET'])
 @requires_cache(['df', 'question', 'sql'])
-def generate_followup_questions(id: str, df, sql, question):
+def generate_followup_questions(id: str, df, question, sql):
     followup_questions = vn.generate_followup_questions(question=question, sql=sql, df=df)
 
     cache.set(id=id, field='followup_questions', value=followup_questions)