import codeanticode.eliza.*; //At the top Eliza nameOfYourBot; void setup() { nameOfYourBot = new Eliza(this); } text(nameOfYourBot.processInput("Something words and such"), 100,100); ProcessInput returns a String value. Anywhere a String could go (println, text, .speak etc can work) Example scamBot.speak(nameOfYourBot.processInput("words and things"));