Update app.py
Browse files
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 |
-
|
|
|
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,
|