alexeyGod commited on
Commit
01db799
·
verified ·
1 Parent(s): 764d7d1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -0
app.py CHANGED
@@ -75,5 +75,19 @@ demo = gr.ChatInterface(
75
  theme=gr.themes.Soft()
76
  )
77
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
78
  if __name__ == "__main__":
79
  demo.launch()
 
75
  theme=gr.themes.Soft()
76
  )
77
 
78
+
79
+
80
+
81
+ # В конце, перед demo.launch() добавьте:
82
+ demo = gr.ChatInterface(
83
+ # ... ваш существующий код ...
84
+ theme=gr.themes.Monochrome(
85
+ primary_hue="red",
86
+ secondary_hue="pink",
87
+ neutral_hue="gray",
88
+ font=["Arial", "sans-serif"]
89
+ )
90
+ )
91
+
92
  if __name__ == "__main__":
93
  demo.launch()