KarthickAdopleAI commited on
Commit
6e041fc
·
verified ·
1 Parent(s): 8601311

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -4
app.py CHANGED
@@ -66,10 +66,7 @@ def download_report():
66
  def bot(history):
67
  bot_message = sales_agent._call({})
68
  history[-1][1] = ""
69
- for character in bot_message:
70
- history[-1][1] += character
71
- time.sleep(0.05)
72
- yield history
73
  summarizer = Summarizer()
74
  sentiment = SentimentAnalyzer()
75
 
 
66
  def bot(history):
67
  bot_message = sales_agent._call({})
68
  history[-1][1] = ""
69
+ return history
 
 
 
70
  summarizer = Summarizer()
71
  sentiment = SentimentAnalyzer()
72