Spaces:
Running
Running
print("=====get_questions=====")
Browse files
app.py
CHANGED
@@ -468,6 +468,11 @@ def get_questions(df_string):
|
|
468 |
q1 = questions[0] if len(questions) > 0 else ""
|
469 |
q2 = questions[1] if len(questions) > 1 else ""
|
470 |
q3 = questions[2] if len(questions) > 2 else ""
|
|
|
|
|
|
|
|
|
|
|
471 |
return q1, q2, q3
|
472 |
|
473 |
def send_question(question, df_string_output, chat_history):
|
|
|
468 |
q1 = questions[0] if len(questions) > 0 else ""
|
469 |
q2 = questions[1] if len(questions) > 1 else ""
|
470 |
q3 = questions[2] if len(questions) > 2 else ""
|
471 |
+
print("=====get_questions=====")
|
472 |
+
print(f"q1: {q1}")
|
473 |
+
print(f"q2: {q2}")
|
474 |
+
print(f"q3: {q3}")
|
475 |
+
print("=====get_questions=====")
|
476 |
return q1, q2, q3
|
477 |
|
478 |
def send_question(question, df_string_output, chat_history):
|