Skip to content

User Questions

Geoff Natin edited this page Mar 2, 2017 · 16 revisions

Questions

Intent Name: 'biographyOfAUser'
Entities involved: 'user'
GitHub Code:

var github = new GitHubClient(new ProductHeaderValue("GitBot"));
var u = await github.User.Get(user);
var gitbotResponse = ($"{user}'s bio is \"{u.Bio}\".");

Unique Utterances

  • What is <user>'s bio?
  • What is the bio of <user>?
  • What's <user>'s biography?
  • What's the biography of <user>?
  • Bio of <user>?
  • <user>'s bio?
  • biography <user>
  • <user> biography
  • Show me <user>'s biography
  • Get me the biography for <user>
  • Tell me what <user>'s biography is

Intent Name: 'usersName'
Entities involved: 'user'
GitHub Code:

var github = new GitHubClient(new ProductHeaderValue("GitBot"));
var u = await github.User.Get(user);
var gitbotResponse = ($"{user}'s bio is \"{u.Name}\".");

Unique Utterances

  • What is the name of <user>?
  • What's <user>'s name?
  • name of <user>?
  • <user>'s name?
  • name <user>
  • <user> name
  • Show me <user>'s name
  • Get me the name <user>
  • Tell me <user>'s name
Clone this wiki locally