Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -18,6 +18,12 @@ url_audio=os.getenv("TRANSCRIPTION")
|
|
18 |
key=os.getenv("KEY")
|
19 |
model=os.getenv("MODEL")
|
20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
|
22 |
OPENAI_API_KEY = secret
|
23 |
sync_client = OpenAI(
|
@@ -204,7 +210,7 @@ interface = gr.Interface(
|
|
204 |
gr.State([]) # Return updated history
|
205 |
],
|
206 |
title="Chagas - assistente de voz IA",
|
207 |
-
description=
|
208 |
theme="sudeepshouche/minimalist",
|
209 |
live=True
|
210 |
)
|
|
|
18 |
key=os.getenv("KEY")
|
19 |
model=os.getenv("MODEL")
|
20 |
|
21 |
+
description = """
|
22 |
+
<center>
|
23 |
+
Primeiro assistente de voz do Brasil
|
24 |
+
<img src="https://huggingface.co/spaces/rodrigomasini/audio-to-text/resolve/main/chagas.png" width=200px>
|
25 |
+
</center>
|
26 |
+
"""
|
27 |
|
28 |
OPENAI_API_KEY = secret
|
29 |
sync_client = OpenAI(
|
|
|
210 |
gr.State([]) # Return updated history
|
211 |
],
|
212 |
title="Chagas - assistente de voz IA",
|
213 |
+
description= description,
|
214 |
theme="sudeepshouche/minimalist",
|
215 |
live=True
|
216 |
)
|