Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -106,14 +106,8 @@ In this app, you can explore the outputs of a gpt-3.5-turbo LLM.
|
|
106 |
"""
|
107 |
|
108 |
css = """
|
109 |
-
body { background-color: #333; color: #fff; }
|
110 |
#col_container {width: 1000px; margin-left: auto; margin-right: auto;}
|
111 |
-
#chatbot {height: 520px; overflow: auto;
|
112 |
-
.gradio-toolbar { background-color: #222; }
|
113 |
-
.text_input { background-color: #222; color: #fff; }
|
114 |
-
.label { color: #fff; }
|
115 |
-
.slider { background-color: #222; }
|
116 |
-
.button { background-color: #444; color: #fff; }
|
117 |
"""
|
118 |
|
119 |
with gr.Blocks(css=css) as demo:
|
|
|
106 |
"""
|
107 |
|
108 |
css = """
|
|
|
109 |
#col_container {width: 1000px; margin-left: auto; margin-right: auto;}
|
110 |
+
#chatbot {height: 520px; overflow: auto;}
|
|
|
|
|
|
|
|
|
|
|
111 |
"""
|
112 |
|
113 |
with gr.Blocks(css=css) as demo:
|