Sharan Thakur commited on
Commit
789fbd1
·
1 Parent(s): 2837f82

Update .gitignore to exclude __pycache__ and modify transcript label in app.py

Browse files
Files changed (2) hide show
  1. .gitignore +1 -0
  2. app.py +1 -1
.gitignore CHANGED
@@ -1,3 +1,4 @@
1
  venv/
2
  output/
3
  *.m4a
 
 
1
  venv/
2
  output/
3
  *.m4a
4
+ __pycache__/
app.py CHANGED
@@ -33,7 +33,7 @@ demo = gr.Interface(
33
  # uploader
34
  gr.Textbox(lines=1, label="Uploader"),
35
  # transcript
36
- gr.Markdown(lines=5, label="Transcript", show_copy_button=True),
37
  ],
38
  title="Summarize Audio",
39
  description="Summarize the content of an audio from a YouTube link.",
 
33
  # uploader
34
  gr.Textbox(lines=1, label="Uploader"),
35
  # transcript
36
+ gr.Markdown(label="Transcript", show_copy_button=True),
37
  ],
38
  title="Summarize Audio",
39
  description="Summarize the content of an audio from a YouTube link.",