martin commited on
Commit
51a6224
·
1 Parent(s): ebefce9

fix regenerate

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -110,7 +110,10 @@ def predict(chatbot, history, tts_model, user_prompt, enable_asr):
110
  if enable_asr:
111
  asr_text = None
112
  if not isinstance(chatbot[-1]["content"], str):
113
- user_audio_path = chatbot[-1]["content"]["path"]
 
 
 
114
  print(f"do asr {user_audio_path=}")
115
  asr_text = call_asr(user_audio_path)
116
  print(f"{asr_text=}")
 
110
  if enable_asr:
111
  asr_text = None
112
  if not isinstance(chatbot[-1]["content"], str):
113
+ if isinstance(chatbot[-1]["content"], dict):
114
+ user_audio_path = chatbot[-1]["content"]["path"]
115
+ else:
116
+ user_audio_path = chatbot[-1]["content"][0]
117
  print(f"do asr {user_audio_path=}")
118
  asr_text = call_asr(user_audio_path)
119
  print(f"{asr_text=}")