tykiww commited on
Commit
f17a9c5
1 Parent(s): f38bb4e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -154,8 +154,8 @@ def main(conf):
154
  gr.Markdown("""These are just some example meeting docs of very clean, brief synthetic meetings generated by LLMs.
155
  Compare these to the demo outputs you get when you don't enter a token to see what contex was retrieved.""")
156
 
157
- for i in meeting_paths:
158
- with gr.Accordion(i):
159
  gr.Textbox(value=meetings[i])
160
 
161
 
 
154
  gr.Markdown("""These are just some example meeting docs of very clean, brief synthetic meetings generated by LLMs.
155
  Compare these to the demo outputs you get when you don't enter a token to see what contex was retrieved.""")
156
 
157
+ for i in range(len(meeting_paths)):
158
+ with gr.Accordion(meeting_paths[i]):
159
  gr.Textbox(value=meetings[i])
160
 
161