Skip to content

Commit

Permalink
Updated chatbot Python scripts to account for the repackaging of the …
Browse files Browse the repository at this point in the history
…riva.client Python module

Signed-off-by: Sven Chilton <[email protected]>
  • Loading branch information
svenchilton committed Dec 12, 2022
1 parent 0446c52 commit 50a9fbe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@

import time

from riva.asr.asr import ASRPipe
from riva.rasa.rasa import RASAPipe
from riva.tts.tts import TTSPipe
# from riva.tts.tts_stream import TTSPipe
from riva_local.asr.asr import ASRPipe
from riva_local.rasa.rasa import RASAPipe
from riva_local.tts.tts import TTSPipe
# from riva_local.tts.tts_stream import TTSPipe

class ChatBot(object):
""" Class Implementing all the features of the chatbot"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# README.md file.
# ==============================================================================

from riva.chatbot.chatbot import ChatBot
from riva_local.chatbot.chatbot import ChatBot
from config import riva_config

# Default ASR parameters - Used in case config values not specified in the config.py file
Expand Down

0 comments on commit 50a9fbe

Please sign in to comment.