Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Open a New Terminal for Each Component:

    • Each component of the SIC infrastructure should run in its own terminal. You can do that really nicely in Pycharm.

    • You can even name them by right-clicking on the session like Local(2) and renaming it to reflect if it has Dialogflow or whatever.

      image-20250105-100909.png

  2. Run the Following Commands (in separate terminals):

    • Dialogflow:

      Code Block
      run-dialogflow
    • Text-to-Speech:

      Code Block
      run-text2speech
    • Webserver:

      Code Block
      run-webserver
    • EIS:

      Code Block
      start-eisframework
    • Run EIS Component:

      Code Block
      run-eis
  3. Open the Web Interface:

    • Open any browser and navigate to the local host link printed in the terminal where you run-eis or run-webserver.

    • You should see the start.html page.

  4. Inspect Terminals (Optional):

    • Do not close the terminals used for launching the SIC infrastructure.

    • You can inspect these terminals to debug or monitor what is happening, such as interactions with Dialogflow.

...