Spaces:
Runtime error
Runtime error
Commit
·
37ca846
1
Parent(s):
2865a75
Update app.py
Browse files
app.py
CHANGED
|
@@ -59,7 +59,19 @@ with gr.Blocks() as demo:
|
|
| 59 |
'''
|
| 60 |
)
|
| 61 |
gr.Examples(
|
| 62 |
-
[['https://archive-media2.granicus.com/OnDemand/sanfrancisco/sanfrancisco_33cae840-42ed-458b-8eaf-bd4760747ab0.mp3'],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 63 |
[text_input],
|
| 64 |
fn=get_transcript_sentiment,
|
| 65 |
label='Click to insert example URL'
|
|
|
|
| 59 |
'''
|
| 60 |
)
|
| 61 |
gr.Examples(
|
| 62 |
+
[['https://archive-media2.granicus.com/OnDemand/sanfrancisco/sanfrancisco_33cae840-42ed-458b-8eaf-bd4760747ab0.mp3']],
|
| 63 |
+
[text_input],
|
| 64 |
+
fn=get_transcript_sentiment,
|
| 65 |
+
label='Click to insert example URL'
|
| 66 |
+
)
|
| 67 |
+
|
| 68 |
+
gr.Markdown('''
|
| 69 |
+
### Example 2:
|
| 70 |
+
[San Francisco Government Mission Cultural Center](https://sanfrancisco.granicus.com/MediaPlayer.php?view_id=74&clip_id=42053)
|
| 71 |
+
'''
|
| 72 |
+
)
|
| 73 |
+
gr.Examples(
|
| 74 |
+
[['https://archive-media2.granicus.com/OnDemand/sanfrancisco/sanfrancisco_33cae840-42ed-458b-8eaf-bd4760747ab0.mp3']],
|
| 75 |
[text_input],
|
| 76 |
fn=get_transcript_sentiment,
|
| 77 |
label='Click to insert example URL'
|