33 lines
1001 B
Plaintext
33 lines
1001 B
Plaintext
const prompts = [
|
|
{
|
|
slug: "summarize-document",
|
|
title: "Summarize Document",
|
|
type: "System",
|
|
description: "Summarizes a document or long input using GPT-4.",
|
|
tags: ["summary", "long-form", "NLP"],
|
|
createdAt: "2025-06-01",
|
|
updatedAt: "2025-07-10",
|
|
notes: "Summarizes input using GPT-4 with smart chunking."
|
|
},
|
|
{
|
|
slug: "translate-text",
|
|
title: "Translate Text",
|
|
type: "Task",
|
|
description: "Translate English text into French, Spanish, or Japanese.",
|
|
tags: ["translate", "language"],
|
|
createdAt: "2025-05-15",
|
|
updatedAt: "2025-06-22",
|
|
notes: "Uses multilingual model for more accurate translation."
|
|
},
|
|
{
|
|
slug: "generate-code",
|
|
title: "Generate Code",
|
|
type: "Task",
|
|
description: "Generate Python or JavaScript functions from descriptions.",
|
|
tags: ["code", "generation", "devtools"],
|
|
createdAt: "2025-06-05",
|
|
updatedAt: "2025-07-01",
|
|
notes: "Includes language detection and function wrapping."
|
|
}
|
|
];
|