Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -96,6 +96,10 @@ def coding():
|
|
| 96 |
|
| 97 |
#######################################################################
|
| 98 |
#Darstellung mit Gradio
|
|
|
|
|
|
|
|
|
|
|
|
|
| 99 |
|
| 100 |
with gr.Blocks(theme=small_and_beautiful_theme) as demo:
|
| 101 |
history = gr.State([])
|
|
|
|
| 96 |
|
| 97 |
#######################################################################
|
| 98 |
#Darstellung mit Gradio
|
| 99 |
+
gr.Chatbot.postprocess = postprocess
|
| 100 |
+
|
| 101 |
+
with open("custom.css", "r", encoding="utf-8") as f:
|
| 102 |
+
customCSS = f.read()
|
| 103 |
|
| 104 |
with gr.Blocks(theme=small_and_beautiful_theme) as demo:
|
| 105 |
history = gr.State([])
|