Update app.py
Browse files
app.py
CHANGED
@@ -36,7 +36,7 @@ def respond(
|
|
36 |
response += token
|
37 |
yield response
|
38 |
# Custom CSS to change the title color
|
39 |
-
|
40 |
.gradio-container h1 {
|
41 |
color: red !important;
|
42 |
}
|
@@ -59,7 +59,7 @@ demo = gr.ChatInterface(
|
|
59 |
step=0.05,
|
60 |
label="Top-p (nucleus sampling)",
|
61 |
),
|
62 |
-
],
|
63 |
|
64 |
)
|
65 |
|
|
|
36 |
response += token
|
37 |
yield response
|
38 |
# Custom CSS to change the title color
|
39 |
+
opq = """
|
40 |
.gradio-container h1 {
|
41 |
color: red !important;
|
42 |
}
|
|
|
59 |
step=0.05,
|
60 |
label="Top-p (nucleus sampling)",
|
61 |
),
|
62 |
+
], css=opq
|
63 |
|
64 |
)
|
65 |
|