Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
import gradio as gr
|
|
|
2 |
from huggingface_hub import InferenceClient
|
3 |
import os
|
4 |
print(os.getenv('hf_token'))
|
@@ -44,9 +45,30 @@ def respond(
|
|
44 |
response += token
|
45 |
yield response
|
46 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
"""
|
48 |
For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
|
49 |
"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
demo = gr.ChatInterface(
|
51 |
respond,
|
52 |
additional_inputs=[
|
@@ -65,4 +87,5 @@ demo = gr.ChatInterface(
|
|
65 |
|
66 |
|
67 |
if __name__ == "__main__":
|
68 |
-
demo.launch()
|
|
|
|
1 |
import gradio as gr
|
2 |
+
import numpy as np
|
3 |
from huggingface_hub import InferenceClient
|
4 |
import os
|
5 |
print(os.getenv('hf_token'))
|
|
|
45 |
response += token
|
46 |
yield response
|
47 |
|
48 |
+
def reverse_audio(audio):
|
49 |
+
sr, data = audio
|
50 |
+
return (sr, np.flipud(data))
|
51 |
+
|
52 |
+
input_audio = gr.Audio(
|
53 |
+
sources=["microphone"],
|
54 |
+
waveform_options=gr.WaveformOptions(
|
55 |
+
waveform_color="#01C6FF",
|
56 |
+
waveform_progress_color="#0066B4",
|
57 |
+
skip_length=2,
|
58 |
+
show_controls=False,
|
59 |
+
),
|
60 |
+
)
|
61 |
+
|
62 |
"""
|
63 |
For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
|
64 |
"""
|
65 |
+
|
66 |
+
audio_interface = gr.Interface(
|
67 |
+
fn=reverse_audio,
|
68 |
+
inputs=input_audio,
|
69 |
+
outputs="audio"
|
70 |
+
)
|
71 |
+
|
72 |
demo = gr.ChatInterface(
|
73 |
respond,
|
74 |
additional_inputs=[
|
|
|
87 |
|
88 |
|
89 |
if __name__ == "__main__":
|
90 |
+
demo.launch()
|
91 |
+
audio_interface.launch()
|