Nick088 commited on
Commit
c30dfc2
·
verified ·
1 Parent(s): ff66ef0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -50,8 +50,12 @@ additional_inputs = [
50
  gr.Number(precision=0, value=42, label="Seed", info="A starting point to initiate generation, use 0 for random")
51
  ]
52
 
 
 
 
 
53
  gr.ChatInterface(
54
- theme='ParityError/Interstellar',
55
  fn=generate_response,
56
  chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
57
  additional_inputs=additional_inputs,
 
50
  gr.Number(precision=0, value=42, label="Seed", info="A starting point to initiate generation, use 0 for random")
51
  ]
52
 
53
+
54
+ my_applio = loadThemes.load_json()
55
+
56
+
57
  gr.ChatInterface(
58
+ theme=my_applio,
59
  fn=generate_response,
60
  chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
61
  additional_inputs=additional_inputs,