Spaces:
Running
Running
debug theme
Browse files
app.py
CHANGED
|
@@ -103,7 +103,9 @@ Assistant: <utterance>
|
|
| 103 |
```
|
| 104 |
In this app, you can explore the outputs of a gpt-4 LLM.
|
| 105 |
"""
|
|
|
|
| 106 |
theme = gr.themes.Default(primary_hue="green")
|
|
|
|
| 107 |
with gr.Blocks(css = """#col_container {width: 1000px; margin-left: auto; margin-right: auto;}
|
| 108 |
#chatbot {height: 520px; overflow: auto;}""",
|
| 109 |
theme=theme) as demo:
|
|
|
|
| 103 |
```
|
| 104 |
In this app, you can explore the outputs of a gpt-4 LLM.
|
| 105 |
"""
|
| 106 |
+
|
| 107 |
theme = gr.themes.Default(primary_hue="green")
|
| 108 |
+
|
| 109 |
with gr.Blocks(css = """#col_container {width: 1000px; margin-left: auto; margin-right: auto;}
|
| 110 |
#chatbot {height: 520px; overflow: auto;}""",
|
| 111 |
theme=theme) as demo:
|