Spaces:
Runtime error
Runtime error
akshayballal
commited on
Commit
β’
194aa77
1
Parent(s):
1cf3d6b
Update app.py
Browse files
app.py
CHANGED
@@ -110,11 +110,22 @@ def search(query, audio):
|
|
110 |
|
111 |
demo = gr.Interface(
|
112 |
title="Search π in Audio ποΈ",
|
113 |
-
description="""
|
114 |
|
115 |
-
|
116 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
""",
|
|
|
|
|
118 |
fn=search,
|
119 |
inputs=["text", gr.Audio(label="Audio", type="filepath")],
|
120 |
outputs=[
|
|
|
110 |
|
111 |
demo = gr.Interface(
|
112 |
title="Search π in Audio ποΈ",
|
113 |
+
description="""
|
114 |
|
115 |
+
# Search within audio files using text queries.
|
116 |
|
117 |
+
## Models used:
|
118 |
+
|
119 |
+
- Audio Decoder: openai/whisper-tiny.en
|
120 |
+
- Embedding Model: Jina base-en
|
121 |
+
|
122 |
+
## Powered by [EmbedAnything by Starlight](https://github.com/StarlightSearch/EmbedAnything) π
|
123 |
+
|
124 |
+
![EmbedAnything](https://res.cloudinary.com/dltwftrgc/image/upload/v1712504276/Projects/EmbedAnything_500_x_200_px_a4l8xu.png)
|
125 |
+
|
126 |
""",
|
127 |
+
article = "Created by [Akshay Ballal](https://www.akshaymakes.com)",
|
128 |
+
|
129 |
fn=search,
|
130 |
inputs=["text", gr.Audio(label="Audio", type="filepath")],
|
131 |
outputs=[
|