TheMaisk commited on
Commit
ba47547
·
verified ·
1 Parent(s): 2235d59

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -50,6 +50,12 @@ mychatbot = gr.Chatbot(
50
  avatar_images=["./user.png", "./botm.png"], bubble_full_width=False, show_label=False, show_copy_button=True, likeable=True,
51
  )
52
 
 
 
 
 
 
 
53
  demo = gr.ChatInterface(
54
  fn=generate,
55
  chatbot=mychatbot,
 
50
  avatar_images=["./user.png", "./botm.png"], bubble_full_width=False, show_label=False, show_copy_button=True, likeable=True,
51
  )
52
 
53
+
54
+ logo_html = gr.HTML(
55
+ value='<div style="text-align: center; margin-bottom: 10px;">'
56
+ '<img src="Pfad_zu_Ihrem_Logo.png" alt="Logo" style="max-width: 100px;">'
57
+ '</div>'
58
+
59
  demo = gr.ChatInterface(
60
  fn=generate,
61
  chatbot=mychatbot,