Skip to content

Instantly share code, notes, and snippets.

@matthieu-D
Last active October 6, 2017 22:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matthieu-D/dc3c2c7e44b758783d8d8d5d859a1fc5 to your computer and use it in GitHub Desktop.
Save matthieu-D/dc3c2c7e44b758783d8d8d5d859a1fc5 to your computer and use it in GitHub Desktop.
ask(question) {
ApiAIPromises.requestText({
query: question
})
.then(({result: {fulfillment: {speech}}}) => {
this.ngZone.run(()=> {
this.answers.push(speech);
});
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment