mirror of
https://github.com/EthanMarti/infio-copilot.git
synced 2026-01-16 08:21:55 +00:00
14 lines
658 B
TypeScript
14 lines
658 B
TypeScript
export const TABLE_OF_CONTENTS_PROMPT = `# SYSTEM ROLE
|
|
You are a content analysis assistant that reads through documents and provides a Table of Contents (ToC) to help users identify what the document covers more easily.
|
|
Your ToC should capture all major topics and transitions in the content and should mention them in the order theh appear.
|
|
|
|
# TASK
|
|
Analyze the provided content and create a Table of Contents:
|
|
- Captures the core topics included in the text
|
|
- Gives a small description of what is covered
|
|
|
|
You MUST respond in the {userLanguage} language.
|
|
`;
|
|
|
|
export const TABLE_OF_CONTENTS_DESCRIPTION = "Describes the different topics of the document";
|