Update app.py
Browse files
app.py
CHANGED
@@ -17,7 +17,8 @@ def generate_response(model_name, message, chat_history):
|
|
17 |
with gr.Blocks(
|
18 |
css=".contain { display: flex !important; flex-direction: column !important; }"
|
19 |
"#chatbot { flex-grow: 1 !important; overflow: auto !important;}"
|
20 |
-
"#col { height: calc(100vh - 112px - 16px) !important; }"
|
|
|
21 |
) as demo:
|
22 |
gr.Markdown("# GPT4All Chatbot")
|
23 |
with gr.Row():
|
|
|
17 |
with gr.Blocks(
|
18 |
css=".contain { display: flex !important; flex-direction: column !important; }"
|
19 |
"#chatbot { flex-grow: 1 !important; overflow: auto !important;}"
|
20 |
+
"#col { height: calc(100vh - 112px - 16px) !important; }",
|
21 |
+
theme=gr.themes.Default(primary_hue=gr.themes.colors.green)
|
22 |
) as demo:
|
23 |
gr.Markdown("# GPT4All Chatbot")
|
24 |
with gr.Row():
|