Brasd99 commited on
Commit
bc1e695
1 Parent(s): b7d68af

Added analytics logging

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -64,6 +64,10 @@ def find_answers(tags: str, questions: str, progress=gr.Progress()) -> str:
64
  tags = tags.split('\n')
65
  questions = questions.split('\n')
66
 
 
 
 
 
67
  validate_tags(tags)
68
  validate_questions(questions)
69
 
 
64
  tags = tags.split('\n')
65
  questions = questions.split('\n')
66
 
67
+ print(f'New attempt to get answers. Got {len(tags)} tags and {len(questions)} questions')
68
+ print(f'Tags: {tags}')
69
+ print(f'Questions: {questions}')
70
+
71
  validate_tags(tags)
72
  validate_questions(questions)
73