TIMBOVILL commited on
Commit
5b1af87
·
verified ·
1 Parent(s): 415dd0a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -2
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="Groq API UI",
56
- description="Inference by Groq. Hugging Face Space by [Nick088](https://linktr.ee/Nick088)",
 
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()