Update app.py
Browse files
app.py
CHANGED
@@ -42,11 +42,22 @@ def main(debug, share):
|
|
42 |
gr.Audio(label="Audio File")
|
43 |
]
|
44 |
|
|
|
|
|
|
|
45 |
# Create Gradio interface
|
46 |
-
demo = gr.Interface(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
|
48 |
# Launch Gradio with command-line options
|
49 |
demo.queue().launch(allowed_paths=[f"./audio"], debug=debug, share=share)
|
50 |
|
51 |
if __name__ == "__main__":
|
52 |
main()
|
|
|
|
42 |
gr.Audio(label="Audio File")
|
43 |
]
|
44 |
|
45 |
+
# Apply theme
|
46 |
+
theme = 'Hev832/Applio' # Replace with your desired Hugging Face theme
|
47 |
+
|
48 |
# Create Gradio interface
|
49 |
+
demo = gr.Interface(
|
50 |
+
fn=tts,
|
51 |
+
inputs=gradio_inputs,
|
52 |
+
outputs=gradio_outputs,
|
53 |
+
title="",
|
54 |
+
examples=example,
|
55 |
+
theme=theme # Apply the theme here
|
56 |
+
)
|
57 |
|
58 |
# Launch Gradio with command-line options
|
59 |
demo.queue().launch(allowed_paths=[f"./audio"], debug=debug, share=share)
|
60 |
|
61 |
if __name__ == "__main__":
|
62 |
main()
|
63 |
+
|