littlebird13 commited on
Commit
7e1efc6
·
verified ·
1 Parent(s): 31dab52

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -11,7 +11,8 @@ def add_text(chatbot, task_history, input):
11
  """Add text to the chat history."""
12
  task_history.append({"role": "user", "content": [{"text": input.text}]})
13
  if len (input.files) > 0:
14
- task_history.append({"role": "user", "content": [{"audio": input.files[0].path}]})
 
15
  chatbot.append([{
16
  "text": input.text,
17
  "files": input.files,
 
11
  """Add text to the chat history."""
12
  task_history.append({"role": "user", "content": [{"text": input.text}]})
13
  if len (input.files) > 0:
14
+ for i in input.files:
15
+ task_history.append({"role": "user", "content": [{"audio": i.path}]})
16
  chatbot.append([{
17
  "text": input.text,
18
  "files": input.files,