-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.js
28 lines (19 loc) · 950 Bytes
/
data.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
const summaryData = [
{
command:
"If the given article, blog post, or document does not require summarization, clearly state 'I think, no summarization needed here.' Otherwise, extract key points to help users save time and enhance their understanding. Provide a well-formatted, concise summary that captures the essence of the original text",
}
];
const summary_footer = `
########################################
Summary Generated by SummifyAI
Date: {{date}}
Time: {{time}}
########################################
Thank you for using SummifyAI, an advanced text summarization tool. We hope that the generated summary has provided you with a concise and insightful overview of the original text. Should you have any further inquiries or require additional assistance, please don't hesitate to reach out to us.
Best regards,
SummifyAI Team`
export const data = {
summaryData,
summary_footer
};