Skip to content

Commit

Permalink
fix: tts no response (#144)
Browse files Browse the repository at this point in the history
  • Loading branch information
wangyoucao577 authored Aug 1, 2024
1 parent 975a2b3 commit f26ffed
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion agents/addon/extension/cosy_tts/cosy_tts_extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,9 @@ def async_handle(self, rte: RteEnv):
callback=callback,
)

logger.info("on message %s", inputText)
logger.info("on message [%s]", inputText)
tts.streaming_call(inputText)
tts.streaming_complete()
except Exception as e:
logger.exception(e)
logger.exception(traceback.format_exc())
Expand Down

0 comments on commit f26ffed

Please sign in to comment.