Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -43,15 +43,12 @@ def transcribe(audio_filepath, task, batch_size, chunk_length_s, sampling_rate,
|
|
43 |
|
44 |
return text_content
|
45 |
|
46 |
-
with gr.Blocks(
|
47 |
-
title="ASR + diarization + speculative decoding with Indexify"
|
48 |
-
) as audio_demo:
|
49 |
-
|
50 |
gr.HTML("<h1 style='text-align: center'>ASR + Diarization + speculative decoding with <a href='https://getindexify.ai/'>Indexify</a></h1>")
|
51 |
gr.HTML("<p style='text-align: center'>Indexify is a scalable realtime and continuous indexing and structured extraction engine for unstructured data to build generative AI applications</p>")
|
52 |
gr.HTML("<h3 style='text-align: center'>If you like this demo, please ⭐ Star us on <a href='https://github.com/tensorlakeai/indexify' target='_blank'>GitHub</a>!</h3>")
|
53 |
-
|
54 |
-
|
55 |
with gr.Row():
|
56 |
with gr.Column():
|
57 |
gr.HTML(
|
|
|
43 |
|
44 |
return text_content
|
45 |
|
46 |
+
with gr.Blocks(title="ASR + diarization + speculative decoding with Indexify") as audio_demo:
|
|
|
|
|
|
|
47 |
gr.HTML("<h1 style='text-align: center'>ASR + Diarization + speculative decoding with <a href='https://getindexify.ai/'>Indexify</a></h1>")
|
48 |
gr.HTML("<p style='text-align: center'>Indexify is a scalable realtime and continuous indexing and structured extraction engine for unstructured data to build generative AI applications</p>")
|
49 |
gr.HTML("<h3 style='text-align: center'>If you like this demo, please ⭐ Star us on <a href='https://github.com/tensorlakeai/indexify' target='_blank'>GitHub</a>!</h3>")
|
50 |
+
gr.HTML("<h4 style='text-align: center'>An example notebook that demonstrates how to build a continous trancription <a href='https://github.com/tensorlakeai/indexify' target='_blank'>pipleine</a> with Indexify</h4>")
|
51 |
+
|
52 |
with gr.Row():
|
53 |
with gr.Column():
|
54 |
gr.HTML(
|