-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprompts
19 lines (19 loc) · 1.09 KB
/
prompts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module.exports = {
helpMessage: "CrunchBot can answer questions about a handfull of tech companies. Here are some of the things you can ask:\n\n" +
"* 'tell me about Microsoft'\n" +
"* 'how many companies has apple bought?'\n" +
"* 'when did amazon go public?'\n" +
"* 'where is googles headquarters?'\n" +
"* 'who founded microsoft?'\n" +
"* 'what is amazons website?'\n" +
"\nOnce you ask a question about a company you can ask followup questions about the same company.",
companyUnknown: "I don't know '%(company)s'. Pick a company from the list or say 'nevermind'.",
companyMissing: "I can answer that first tell me what company you're interested in:",
cancel: "Sure... no problem.",
answerAcquisitions: "%(company)s has acquired %(value)d companies.",
answerIpoDate: "%(company)s went public on %(value)s.",
answerHeadquarters: "The headquarters for %(company)s is located in %(value)s.",
answerDescription: "%(value)s",
answerFounders: "%(company)s was founded by %(value)s.",
answerWebsite: "The webiste for %(company)s is %(value)s."
};