Update app.py
Browse files
app.py
CHANGED
@@ -20,7 +20,8 @@ with gr.Blocks(
|
|
20 |
"#chatbot { flex-grow: 1 !important; overflow: auto !important; }"
|
21 |
"#col { height: calc(100vh - 112px - 16px) !important; }"
|
22 |
"#submit:hover { background-color: green !important; }"
|
23 |
-
"#clear { background-color: darkred !important; }"
|
|
|
24 |
theme=gr.themes.Soft(font=[gr.themes.GoogleFont("Martel Sans")])
|
25 |
) as demo:
|
26 |
gr.Markdown("# GPT4All Chatbot")
|
@@ -43,7 +44,8 @@ with gr.Blocks(
|
|
43 |
type="filepath",
|
44 |
columns=1,
|
45 |
object_fit="scale-down",
|
46 |
-
height=200
|
|
|
47 |
)
|
48 |
|
49 |
with gr.Column(scale=4, elem_id='col'):
|
|
|
20 |
"#chatbot { flex-grow: 1 !important; overflow: auto !important; }"
|
21 |
"#col { height: calc(100vh - 112px - 16px) !important; }"
|
22 |
"#submit:hover { background-color: green !important; }"
|
23 |
+
"#clear { background-color: darkred !important; }"
|
24 |
+
"#hardware_pic { padding: 0 !important; }",
|
25 |
theme=gr.themes.Soft(font=[gr.themes.GoogleFont("Martel Sans")])
|
26 |
) as demo:
|
27 |
gr.Markdown("# GPT4All Chatbot")
|
|
|
44 |
type="filepath",
|
45 |
columns=1,
|
46 |
object_fit="scale-down",
|
47 |
+
height=200,
|
48 |
+
elem_id="hardware_pic"
|
49 |
)
|
50 |
|
51 |
with gr.Column(scale=4, elem_id='col'):
|