alexkueck commited on
Commit
1b39c53
1 Parent(s): 0718219

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
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([])