...
Activate PCA25:
Ensure that PCA25 is activated in your environment.Model Checkpoints:
Confirm you have a trained model checkpoint saved in thenlu.utils.checkpoints
folder.Replace File:
Replace the existing file located at:Code Block social-interaction-cloud/sic_framework/services/eis/eiscomponent.py
with the updated
eiscomponent.py
file provided:
. To use Dialogflow with this file this variable should be changed to False on line 105.View file name eiscomponent.py Code Block # If true then you use your intent and slot classifier including Whisper otherwise Dialogflow self.params.nlu = False
Steps to Run the Pipeline:
...
Run Whisper:
Start the Whisper component to handle speech-to-text conversion:Code Block run-whisper
Note: The first time you use Whisper, the transcription may take some time due to downloading the model. Be patient during this process. If it still takes a long time after the first time read the top of the eiscomponent.py file.
Run NLU:
Start the natural language understanding (NLU) module:Code Block run-nlu
Run Webserver:
Launch the webserver for pipeline integration:Code Block run-webserver
Start Framework:
Initialize the framework:Code Block start-framework
Run EIS:
Start the External Interface Service (EIS):Code Block run-eis
Launch Localhost:
Open your browser and navigate to the localhost start page.Run MARBEL Agent in Eclipse:
Start the MARBEL agent within Eclipse. Ensure the agent connects successfully to the pipeline.
...