Spaces:
Sleeping
Sleeping
Keira James
commited on
Commit
ยท
279b72c
1
Parent(s):
4d3f3d3
Fixed merge conflict
Browse files
app.py
CHANGED
@@ -45,7 +45,7 @@ demo = gr.ChatInterface(
|
|
45 |
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
46 |
gr.Slider(minimum=0.1, maximum=1.0, value=0.95, step=0.05, label="Top-p (nucleus sampling)"),
|
47 |
],
|
48 |
-
css="""
|
49 |
/* Custom CSS to style the interface */
|
50 |
.gradio-container {
|
51 |
background-color: #222222; /* Dark background */
|
@@ -101,14 +101,13 @@ demo = gr.ChatInterface(
|
|
101 |
.gradio-container .gradio-textbox input {
|
102 |
font-size: 16px;
|
103 |
}
|
|
|
104 |
.gradio-container p {
|
105 |
color: #bdbdbd; /* Light grey description text */
|
106 |
text-align: center;
|
107 |
font-size: 14px;
|
108 |
}
|
109 |
-
"""
|
110 |
-
title="Cuddly Chatbot ๐พ",
|
111 |
-
description="A sweet and friendly assistant for all your questions! ๐",
|
112 |
)
|
113 |
|
114 |
if __name__ == "__main__":
|
|
|
45 |
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
46 |
gr.Slider(minimum=0.1, maximum=1.0, value=0.95, step=0.05, label="Top-p (nucleus sampling)"),
|
47 |
],
|
48 |
+
css="""
|
49 |
/* Custom CSS to style the interface */
|
50 |
.gradio-container {
|
51 |
background-color: #222222; /* Dark background */
|
|
|
101 |
.gradio-container .gradio-textbox input {
|
102 |
font-size: 16px;
|
103 |
}
|
104 |
+
|
105 |
.gradio-container p {
|
106 |
color: #bdbdbd; /* Light grey description text */
|
107 |
text-align: center;
|
108 |
font-size: 14px;
|
109 |
}
|
110 |
+
"""
|
|
|
|
|
111 |
)
|
112 |
|
113 |
if __name__ == "__main__":
|