kz209 commited on
Commit
431a171
·
1 Parent(s): 42c830b
Files changed (1) hide show
  1. pages/arena.py +1 -1
pages/arena.py CHANGED
@@ -15,7 +15,7 @@ def create_arena():
15
  with gr.Group():
16
  gr.Markdown("## This is a playground to test prompts for clinical dialogue summarizations")
17
 
18
- with json.loads("prompt/prompt.json", "r") as file:
19
  json_data = file.read()
20
  prompts = json.loads(json_data)
21
 
 
15
  with gr.Group():
16
  gr.Markdown("## This is a playground to test prompts for clinical dialogue summarizations")
17
 
18
+ with open("prompt/prompt.json", "r") as file:
19
  json_data = file.read()
20
  prompts = json.loads(json_data)
21