Skip to content

Latest commit

 

History

History
54 lines (39 loc) · 1.64 KB

how-to-build-and-run-the-projects.md

File metadata and controls

54 lines (39 loc) · 1.64 KB

How to build and run the projects

Run each of them in a different terminal one after the other:

First terminal window

cd helidon-world
mvn clean package
./run-helidon-world.sh

Second terminal window

cd quarkus-world
mvn clean package
./run-quarkus-world.sh

Third terminal window

cd roberta-world
./run-roberta-world.sh

Fourth terminal window

cd connecting_worlds
mvn clean package

Run this one only after the above three are up and running:

./run-connecting-worlds.sh

Watch the conversations across the fours windows. If they tend to go in a loop (happens rarely) repeating the same things again and again, then restart the connecting world app by re-running the shell-script.

All the conversations of the three worlds: Helidon, Quarkus and Roberta are amendable and can be customised.

Eliza

Some Eliza related resources gathered during the preparation of this demo:

Roberta

Learn more about the Roberta models on the Fairseq's gitHub repo.

For this demo we have make use of the Roberta base model but any of the avaiable models could have been used. Of course their API's may differ.

Back to the README.md page