Ankerkraut commited on
Commit
cf5a60f
·
1 Parent(s): 7718657
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -202,7 +202,7 @@ def get_answers():
202
  for question in json_data:
203
  answer = interactive_chat(question)
204
  answers.append(answer)
205
- with open(".Data/answers.json", "w", encoding="utf-8") as file:
206
  json.dump({"answers": answers}, file, ensure_ascii=False, indent=4)
207
 
208
  @spaces.GPU
 
202
  for question in json_data:
203
  answer = interactive_chat(question)
204
  answers.append(answer)
205
+ with open("./Data/answers.json", "w", encoding="utf-8") as file:
206
  json.dump({"answers": answers}, file, ensure_ascii=False, indent=4)
207
 
208
  @spaces.GPU