BlockBerg commited on
Commit
3ad19dc
·
verified ·
1 Parent(s): a8427ea

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -88,7 +88,7 @@ gr.ChatInterface(
88
  fn=ask_agent,
89
  title="AI Treasury Assistant",
90
  description="Ask about cash positions, FX risk, or liquidity outlook.",
91
- chatbot=gr.Chatbot(show_copy_button=True),
92
- type="messages" # ✅ Fixes the warning
93
  ).launch()
94
 
 
88
  fn=ask_agent,
89
  title="AI Treasury Assistant",
90
  description="Ask about cash positions, FX risk, or liquidity outlook.",
91
+ chatbot=gr.Chatbot(show_copy_button=True, type="messages"), # ✅ Fix here
92
+ type="messages" # ✅ And here
93
  ).launch()
94