final update
Browse files
app.py
CHANGED
@@ -89,12 +89,7 @@ def get_text_response(user_message,history):
|
|
89 |
response = llm_chain.predict(user_message = user_message)
|
90 |
return response
|
91 |
|
92 |
-
theme =
|
93 |
-
|
94 |
-
button_primary_background_fill="*primary_400",
|
95 |
-
button_primary_background_fill_hover="*primary_300",
|
96 |
-
|
97 |
-
)
|
98 |
|
99 |
demo = gr.ChatInterface(get_text_response,clear_btn=None,retry_btn=None,stop_btn=None,undo_btn=None,theme=theme,
|
100 |
chatbot= gr.Chatbot(bubble_full_width=False,label='Kum bot',show_label=True,height=350,show_share_button=False,
|
|
|
89 |
response = llm_chain.predict(user_message = user_message)
|
90 |
return response
|
91 |
|
92 |
+
theme =gr.themes.Default(primary_hue='purple')
|
|
|
|
|
|
|
|
|
|
|
93 |
|
94 |
demo = gr.ChatInterface(get_text_response,clear_btn=None,retry_btn=None,stop_btn=None,undo_btn=None,theme=theme,
|
95 |
chatbot= gr.Chatbot(bubble_full_width=False,label='Kum bot',show_label=True,height=350,show_share_button=False,
|