Currently this will break
npm run start 'hi'
npm run start "I'm feeling down. Can you cheer me up with a joke?"
Well, it won't exactly break, but you won't get be the joke.
To fix this the return on line 53 of the ui.ts file needs to be moved to just after line 51.
Currently this will break
npm run start 'hi'npm run start "I'm feeling down. Can you cheer me up with a joke?"Well, it won't exactly break, but you won't get be the joke.
To fix this the
returnon line 53 of the ui.ts file needs to be moved to just after line 51.