Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -35,6 +35,9 @@ CSS = """
|
|
35 |
h3 {
|
36 |
text-align: center;
|
37 |
}
|
|
|
|
|
|
|
38 |
"""
|
39 |
|
40 |
|
@@ -131,7 +134,7 @@ tools_schema = """function_params = {
|
|
131 |
},
|
132 |
}"""
|
133 |
|
134 |
-
chatbot = gr.Chatbot(height = 600, placeholder = PLACEHOLDER
|
135 |
with gr.Blocks(theme="citrus", css=CSS) as demo:
|
136 |
gr.ChatInterface(
|
137 |
fn = stream_chat,
|
|
|
35 |
h3 {
|
36 |
text-align: center;
|
37 |
}
|
38 |
+
.examples {
|
39 |
+
visibility: hidden;
|
40 |
+
}
|
41 |
"""
|
42 |
|
43 |
|
|
|
134 |
},
|
135 |
}"""
|
136 |
|
137 |
+
chatbot = gr.Chatbot(height = 600, placeholder = PLACEHOLDER)
|
138 |
with gr.Blocks(theme="citrus", css=CSS) as demo:
|
139 |
gr.ChatInterface(
|
140 |
fn = stream_chat,
|