Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -48,10 +48,16 @@ additional_inputs = [
|
|
48 |
gr.Number(precision=0, value=42, label="Seed", info="A starting point to initiate generation, use 0 for random")
|
49 |
]
|
50 |
|
|
|
|
|
|
|
|
|
|
|
51 |
gr.ChatInterface(
|
52 |
fn=generate_response,
|
53 |
chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
|
54 |
additional_inputs=additional_inputs,
|
55 |
-
title="
|
56 |
-
description="
|
|
|
57 |
).launch()
|
|
|
48 |
gr.Number(precision=0, value=42, label="Seed", info="A starting point to initiate generation, use 0 for random")
|
49 |
]
|
50 |
|
51 |
+
theme = gr.themes.Soft(
|
52 |
+
primary_hue="red",
|
53 |
+
secondary_hue="pink",
|
54 |
+
)
|
55 |
+
|
56 |
gr.ChatInterface(
|
57 |
fn=generate_response,
|
58 |
chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
|
59 |
additional_inputs=additional_inputs,
|
60 |
+
title="YTSHorts Maker",
|
61 |
+
description="Powered by GROQ, MoviePy, and other tools.",
|
62 |
+
theme="theme",
|
63 |
).launch()
|