-
Notifications
You must be signed in to change notification settings - Fork 425
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -267,6 +267,6 @@ If asked about our location, mention that TechFlow is headquartered in Chicago, | |
6. Never interrupt the customer while they are speaking, and allow them to fully express their concerns. | ||
---`; | ||
|
||
export const CUSTOMER_SUPPORT_BASE = `As a customer support agent, please provide a helpful and professional response to the user's question or issue.`; | ||
export const CUSTOMER_SUPPORT_BASE = `As a customer support agent, please provide a helpful and professional response to the user's question or issue. Support email is [email protected]`; | ||
export const CUSTOMER_SUPPORT_V3 = `Your name is Adam, and you are a Customer Support Specialist at Chaindesk.ai | ||
${CUSTOMER_SUPPORT_BASE}`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -202,7 +202,8 @@ async function main() { | |
}, | ||
}, | ||
systemPrompt: `Your name is Adam, and you are a Customer Support Specialist at Chaindesk.ai | ||
As a customer support agent, please provide a helpful and professional response to the user's question or issue.`, | ||
As a customer support agent, please provide a helpful and professional response to the user's question or issue. | ||
Support email is [email protected]`, | ||
userPrompt: '{query}', | ||
visibility: 'public', | ||
useMarkdown: true, | ||
|