HydroFlyer53 commited on
Commit
369069c
·
verified ·
1 Parent(s): 218d82c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -27,7 +27,7 @@ def chat_with_ai(message, history):
27
  def startup_message():
28
  return "SusAI ©2025 Intern Labs. v1.0.5"
29
 
30
- demo = gr.ChatInterface(fn=chat_with_ai, chatbot=gr.Chatbot().style(container=True))
31
 
32
  demo.chatbot.append((startup_message(), None))
33
 
 
27
  def startup_message():
28
  return "SusAI ©2025 Intern Labs. v1.0.5"
29
 
30
+ demo = gr.ChatInterface(fn=chat_with_ai)
31
 
32
  demo.chatbot.append((startup_message(), None))
33