diff --git a/prompts/20260322-173920-001-chapter_structure_generation_prompt.txt b/prompts/20260322-173920-001-chapter_structure_generation_prompt.txt deleted file mode 100644 index 49ba0ee5..00000000 --- a/prompts/20260322-173920-001-chapter_structure_generation_prompt.txt +++ /dev/null @@ -1,119 +0,0 @@ -# TASK: Plan Document Structure (Documents + Chapters) - -This is a STRUCTURE PLANNING task. You define which documents to create and which chapters each document will have. -Chapter CONTENT will be generated in a later step - here you only plan the STRUCTURE and assign content references. -Return EXACTLY ONE complete JSON object. Do not generate multiple JSON objects, alternatives, or variations. Do not use separators like "---" between JSON objects. - -## USER REQUEST (for context) -``` -entwirf eine email mit dem inhalt des files davor -``` - -## AVAILABLE CONTENT PARTS - -(No content parts available) - -## CONTENT ASSIGNMENT RULE - -CRITICAL: Every chapter MUST have contentParts assigned if it relates to documents/images/data from the user request. -If the user request mentions documents/images/data, then EVERY chapter that generates content related to those references MUST assign the relevant ContentParts explicitly. - -Assignment logic: -- If chapter DISPLAYS a document/image → assign "object" format ContentPart with "caption" -- If chapter generates text content ABOUT a document/image/data → assign ContentPart with "instruction": - - Prefer "extracted" format if available (contains analyzed/extracted content) - - If only "object" format is available, use "object" format with "instruction" (to write ABOUT the image/document) -- If chapter's generationHint or purpose relates to a document/image/data mentioned in user request → it MUST have ContentParts assigned -- Multiple chapters might assign the same ContentPart (e.g., one chapter displays image, another writes about it) -- Use ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above -- Empty contentParts are only allowed if chapter generates content WITHOUT referencing any documents/images/data from the user request - -CRITICAL RULE: If the user request mentions BOTH: - a) Documents/images/data (listed in AVAILABLE CONTENT PARTS above), AND - b) Generic content types (article text, main content, body text, etc.) -Then chapters that generate those generic content types MUST assign the relevant ContentParts, because the content should relate to or be based on the provided documents/images/data. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential information only -- AVOID verbose, lengthy, or repetitive text - be concise and direct -- Prioritize FACTS over filler text - no introductions like "In this chapter..." -- Minimize system resources: shorter content = faster processing -- Quality over quantity: precise, meaningful content rather than padding - -## CHAPTER STRUCTURE REQUIREMENTS -- Generate chapters based on USER REQUEST - analyze what structure the user wants -- Create ONLY the minimum chapters needed to cover the user's request - avoid over-structuring -- HARD LIMIT: Maximum 7 chapters per document. If the topic can be covered in fewer, prefer fewer. Combine related topics into single chapters rather than creating many small ones. -- IMPORTANT: Each chapter MUST have ALL these fields: - - id: Unique identifier (e.g., "chapter_1") - - level: Heading level (1, 2, 3, etc.) - - title: Chapter title - - contentParts: Object mapping ContentPart IDs to usage instructions (MUST assign if chapter relates to documents/data from user request) - - generationHint: Description of what content to generate (including formatting/styling requirements) - - sections: Empty array [] (REQUIRED - sections are generated in next phase) -- contentParts: {"partId": {"instruction": "..."} or {"caption": "..."} or both} - Assign ContentParts as required by CONTENT ASSIGNMENT RULE above -- The "instruction" field for each ContentPart MUST contain ALL relevant details from the USER REQUEST that apply to content extraction for this specific chapter. Include all formatting rules, data requirements, constraints, and specifications mentioned in the user request that are relevant for processing this ContentPart in this chapter. -- generationHint: Keep CONCISE but include relevant details from the USER REQUEST. Focus on WHAT to generate, not HOW to phrase it verbosely. -- The number of chapters depends on the user request - create only what is requested. Do NOT create chapters for topics without available data. - -CRITICAL: Only create chapters for CONTENT sections, not for formatting/styling requirements. Formatting/styling requirements to be included in each generationHint if needed. - -## DOCUMENT STRUCTURE - -For each document, determine: -- outputFormat: From USER REQUEST (explicit mention or infer from purpose/content type). Default: "txt". Multiple documents can have different formats. -- language: From USER REQUEST (map to ISO 639-1: de, en, fr, it...). Default: "de". Multiple documents can have different languages. -- chapters: Structure appropriately for the format (e.g., pptx=slides, docx=sections, xlsx=worksheets). Match format capabilities and constraints. - -Required JSON fields: -- metadata: {"title": "...", "language": "..."} -- documents: Array with id, title, filename, outputFormat, language, chapters[] -- chapters: Array with id, level, title, contentParts, generationHint, sections[] - -EXAMPLE STRUCTURE (for reference only - adapt to user request): -{ - "metadata": { - "title": "Document Title", - "language": "de" - }, - "documents": [{ - "id": "doc_1", - "title": "Document Title", - "filename": "document.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Chapter Title", - "contentParts": { - "extracted_part_id": { - "instruction": "Use extracted content with ALL relevant details from user request" - } - }, - "generationHint": "Detailed description including ALL relevant details from user request for this chapter", - "sections": [] - } - ] - }] -} - -CRITICAL INSTRUCTIONS: -- Generate chapters based on USER REQUEST, NOT based on the example above -- The example shows the JSON structure format, NOT the required chapters -- Create only the chapters that match the user's request -- Adapt chapter titles and structure to match the user's specific request -- Determine outputFormat and language for each document by analyzing the USER REQUEST above -- The example shows placeholders "txt" and "de" - YOU MUST REPLACE THESE with actual values determined from the USER REQUEST - -MANDATORY CONTENT ASSIGNMENT CHECK: -For each chapter, verify: -1. Does the user request mention documents/images/data? (e.g., "photo", "image", "document", "data", "based on", "about") -2. Does this chapter's generationHint, title, or purpose relate to those documents/images/data mentioned in step 1? - - Examples: "article about the photo", "text describing the image", "analysis of the document", "content based on the data" - - Even if chapter doesn't explicitly say "about the image", if user request mentions both the image AND this chapter's content type → relate them -3. If YES to both → chapter MUST have contentParts assigned (cannot be empty {}) -4. If ContentPart is "object" format and chapter needs to write ABOUT it → assign with "instruction" field, not just "caption" - -OUTPUT FORMAT: Start with { and end with }. Do NOT use markdown code fences (```json). Do NOT add explanatory text before or after the JSON. Return ONLY the JSON object itself. diff --git a/prompts/20260322-173923-002-chapter_structure_generation_response.txt b/prompts/20260322-173923-002-chapter_structure_generation_response.txt deleted file mode 100644 index 47b68325..00000000 --- a/prompts/20260322-173923-002-chapter_structure_generation_response.txt +++ /dev/null @@ -1,41 +0,0 @@ -{ - "metadata": { - "title": "Email Entwurf", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "Email Entwurf", - "filename": "email_entwurf.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Einleitung", - "contentParts": {}, - "generationHint": "Erstellen Sie eine kurze Einleitung für die E-Mail, die den Zweck der Nachricht erklärt.", - "sections": [] - }, - { - "id": "chapter_2", - "level": 1, - "title": "Hauptteil", - "contentParts": {}, - "generationHint": "Formulieren Sie den Hauptinhalt der E-Mail basierend auf den Informationen, die im vorherigen Dokument enthalten waren.", - "sections": [] - }, - { - "id": "chapter_3", - "level": 1, - "title": "Schluss", - "contentParts": {}, - "generationHint": "Schreiben Sie einen abschließenden Absatz, der die E-Mail höflich beendet und eventuell weitere Schritte oder Erwartungen erwähnt.", - "sections": [] - } - ] - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-173923-003-chapter_structure_generation_final_result.txt b/prompts/20260322-173923-003-chapter_structure_generation_final_result.txt deleted file mode 100644 index 47b68325..00000000 --- a/prompts/20260322-173923-003-chapter_structure_generation_final_result.txt +++ /dev/null @@ -1,41 +0,0 @@ -{ - "metadata": { - "title": "Email Entwurf", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "Email Entwurf", - "filename": "email_entwurf.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Einleitung", - "contentParts": {}, - "generationHint": "Erstellen Sie eine kurze Einleitung für die E-Mail, die den Zweck der Nachricht erklärt.", - "sections": [] - }, - { - "id": "chapter_2", - "level": 1, - "title": "Hauptteil", - "contentParts": {}, - "generationHint": "Formulieren Sie den Hauptinhalt der E-Mail basierend auf den Informationen, die im vorherigen Dokument enthalten waren.", - "sections": [] - }, - { - "id": "chapter_3", - "level": 1, - "title": "Schluss", - "contentParts": {}, - "generationHint": "Schreiben Sie einen abschließenden Absatz, der die E-Mail höflich beendet und eventuell weitere Schritte oder Erwartungen erwähnt.", - "sections": [] - } - ] - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-173936-004-chapter_structure_generation_prompt.txt b/prompts/20260322-173936-004-chapter_structure_generation_prompt.txt deleted file mode 100644 index 49ba0ee5..00000000 --- a/prompts/20260322-173936-004-chapter_structure_generation_prompt.txt +++ /dev/null @@ -1,119 +0,0 @@ -# TASK: Plan Document Structure (Documents + Chapters) - -This is a STRUCTURE PLANNING task. You define which documents to create and which chapters each document will have. -Chapter CONTENT will be generated in a later step - here you only plan the STRUCTURE and assign content references. -Return EXACTLY ONE complete JSON object. Do not generate multiple JSON objects, alternatives, or variations. Do not use separators like "---" between JSON objects. - -## USER REQUEST (for context) -``` -entwirf eine email mit dem inhalt des files davor -``` - -## AVAILABLE CONTENT PARTS - -(No content parts available) - -## CONTENT ASSIGNMENT RULE - -CRITICAL: Every chapter MUST have contentParts assigned if it relates to documents/images/data from the user request. -If the user request mentions documents/images/data, then EVERY chapter that generates content related to those references MUST assign the relevant ContentParts explicitly. - -Assignment logic: -- If chapter DISPLAYS a document/image → assign "object" format ContentPart with "caption" -- If chapter generates text content ABOUT a document/image/data → assign ContentPart with "instruction": - - Prefer "extracted" format if available (contains analyzed/extracted content) - - If only "object" format is available, use "object" format with "instruction" (to write ABOUT the image/document) -- If chapter's generationHint or purpose relates to a document/image/data mentioned in user request → it MUST have ContentParts assigned -- Multiple chapters might assign the same ContentPart (e.g., one chapter displays image, another writes about it) -- Use ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above -- Empty contentParts are only allowed if chapter generates content WITHOUT referencing any documents/images/data from the user request - -CRITICAL RULE: If the user request mentions BOTH: - a) Documents/images/data (listed in AVAILABLE CONTENT PARTS above), AND - b) Generic content types (article text, main content, body text, etc.) -Then chapters that generate those generic content types MUST assign the relevant ContentParts, because the content should relate to or be based on the provided documents/images/data. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential information only -- AVOID verbose, lengthy, or repetitive text - be concise and direct -- Prioritize FACTS over filler text - no introductions like "In this chapter..." -- Minimize system resources: shorter content = faster processing -- Quality over quantity: precise, meaningful content rather than padding - -## CHAPTER STRUCTURE REQUIREMENTS -- Generate chapters based on USER REQUEST - analyze what structure the user wants -- Create ONLY the minimum chapters needed to cover the user's request - avoid over-structuring -- HARD LIMIT: Maximum 7 chapters per document. If the topic can be covered in fewer, prefer fewer. Combine related topics into single chapters rather than creating many small ones. -- IMPORTANT: Each chapter MUST have ALL these fields: - - id: Unique identifier (e.g., "chapter_1") - - level: Heading level (1, 2, 3, etc.) - - title: Chapter title - - contentParts: Object mapping ContentPart IDs to usage instructions (MUST assign if chapter relates to documents/data from user request) - - generationHint: Description of what content to generate (including formatting/styling requirements) - - sections: Empty array [] (REQUIRED - sections are generated in next phase) -- contentParts: {"partId": {"instruction": "..."} or {"caption": "..."} or both} - Assign ContentParts as required by CONTENT ASSIGNMENT RULE above -- The "instruction" field for each ContentPart MUST contain ALL relevant details from the USER REQUEST that apply to content extraction for this specific chapter. Include all formatting rules, data requirements, constraints, and specifications mentioned in the user request that are relevant for processing this ContentPart in this chapter. -- generationHint: Keep CONCISE but include relevant details from the USER REQUEST. Focus on WHAT to generate, not HOW to phrase it verbosely. -- The number of chapters depends on the user request - create only what is requested. Do NOT create chapters for topics without available data. - -CRITICAL: Only create chapters for CONTENT sections, not for formatting/styling requirements. Formatting/styling requirements to be included in each generationHint if needed. - -## DOCUMENT STRUCTURE - -For each document, determine: -- outputFormat: From USER REQUEST (explicit mention or infer from purpose/content type). Default: "txt". Multiple documents can have different formats. -- language: From USER REQUEST (map to ISO 639-1: de, en, fr, it...). Default: "de". Multiple documents can have different languages. -- chapters: Structure appropriately for the format (e.g., pptx=slides, docx=sections, xlsx=worksheets). Match format capabilities and constraints. - -Required JSON fields: -- metadata: {"title": "...", "language": "..."} -- documents: Array with id, title, filename, outputFormat, language, chapters[] -- chapters: Array with id, level, title, contentParts, generationHint, sections[] - -EXAMPLE STRUCTURE (for reference only - adapt to user request): -{ - "metadata": { - "title": "Document Title", - "language": "de" - }, - "documents": [{ - "id": "doc_1", - "title": "Document Title", - "filename": "document.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Chapter Title", - "contentParts": { - "extracted_part_id": { - "instruction": "Use extracted content with ALL relevant details from user request" - } - }, - "generationHint": "Detailed description including ALL relevant details from user request for this chapter", - "sections": [] - } - ] - }] -} - -CRITICAL INSTRUCTIONS: -- Generate chapters based on USER REQUEST, NOT based on the example above -- The example shows the JSON structure format, NOT the required chapters -- Create only the chapters that match the user's request -- Adapt chapter titles and structure to match the user's specific request -- Determine outputFormat and language for each document by analyzing the USER REQUEST above -- The example shows placeholders "txt" and "de" - YOU MUST REPLACE THESE with actual values determined from the USER REQUEST - -MANDATORY CONTENT ASSIGNMENT CHECK: -For each chapter, verify: -1. Does the user request mention documents/images/data? (e.g., "photo", "image", "document", "data", "based on", "about") -2. Does this chapter's generationHint, title, or purpose relate to those documents/images/data mentioned in step 1? - - Examples: "article about the photo", "text describing the image", "analysis of the document", "content based on the data" - - Even if chapter doesn't explicitly say "about the image", if user request mentions both the image AND this chapter's content type → relate them -3. If YES to both → chapter MUST have contentParts assigned (cannot be empty {}) -4. If ContentPart is "object" format and chapter needs to write ABOUT it → assign with "instruction" field, not just "caption" - -OUTPUT FORMAT: Start with { and end with }. Do NOT use markdown code fences (```json). Do NOT add explanatory text before or after the JSON. Return ONLY the JSON object itself. diff --git a/prompts/20260322-173939-005-chapter_structure_generation_response.txt b/prompts/20260322-173939-005-chapter_structure_generation_response.txt deleted file mode 100644 index e7137c2a..00000000 --- a/prompts/20260322-173939-005-chapter_structure_generation_response.txt +++ /dev/null @@ -1,41 +0,0 @@ -{ - "metadata": { - "title": "Email Entwurf", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "Email Entwurf", - "filename": "email_entwurf.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Einleitung", - "contentParts": {}, - "generationHint": "Erstellen Sie eine Einleitung für die E-Mail, die den Zweck und den Kontext der Nachricht kurz beschreibt.", - "sections": [] - }, - { - "id": "chapter_2", - "level": 1, - "title": "Hauptinhalt", - "contentParts": {}, - "generationHint": "Formulieren Sie den Hauptinhalt der E-Mail, der die wesentlichen Informationen oder Anfragen enthält.", - "sections": [] - }, - { - "id": "chapter_3", - "level": 1, - "title": "Abschluss", - "contentParts": {}, - "generationHint": "Fügen Sie einen Abschluss hinzu, der die E-Mail höflich beendet und eventuell weitere Schritte oder Erwartungen erwähnt.", - "sections": [] - } - ] - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-173939-006-chapter_structure_generation_final_result.txt b/prompts/20260322-173939-006-chapter_structure_generation_final_result.txt deleted file mode 100644 index e7137c2a..00000000 --- a/prompts/20260322-173939-006-chapter_structure_generation_final_result.txt +++ /dev/null @@ -1,41 +0,0 @@ -{ - "metadata": { - "title": "Email Entwurf", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "Email Entwurf", - "filename": "email_entwurf.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Einleitung", - "contentParts": {}, - "generationHint": "Erstellen Sie eine Einleitung für die E-Mail, die den Zweck und den Kontext der Nachricht kurz beschreibt.", - "sections": [] - }, - { - "id": "chapter_2", - "level": 1, - "title": "Hauptinhalt", - "contentParts": {}, - "generationHint": "Formulieren Sie den Hauptinhalt der E-Mail, der die wesentlichen Informationen oder Anfragen enthält.", - "sections": [] - }, - { - "id": "chapter_3", - "level": 1, - "title": "Abschluss", - "contentParts": {}, - "generationHint": "Fügen Sie einen Abschluss hinzu, der die E-Mail höflich beendet und eventuell weitere Schritte oder Erwartungen erwähnt.", - "sections": [] - } - ] - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174008-007-chapter_structure_generation_prompt.txt b/prompts/20260322-174008-007-chapter_structure_generation_prompt.txt deleted file mode 100644 index 49ba0ee5..00000000 --- a/prompts/20260322-174008-007-chapter_structure_generation_prompt.txt +++ /dev/null @@ -1,119 +0,0 @@ -# TASK: Plan Document Structure (Documents + Chapters) - -This is a STRUCTURE PLANNING task. You define which documents to create and which chapters each document will have. -Chapter CONTENT will be generated in a later step - here you only plan the STRUCTURE and assign content references. -Return EXACTLY ONE complete JSON object. Do not generate multiple JSON objects, alternatives, or variations. Do not use separators like "---" between JSON objects. - -## USER REQUEST (for context) -``` -entwirf eine email mit dem inhalt des files davor -``` - -## AVAILABLE CONTENT PARTS - -(No content parts available) - -## CONTENT ASSIGNMENT RULE - -CRITICAL: Every chapter MUST have contentParts assigned if it relates to documents/images/data from the user request. -If the user request mentions documents/images/data, then EVERY chapter that generates content related to those references MUST assign the relevant ContentParts explicitly. - -Assignment logic: -- If chapter DISPLAYS a document/image → assign "object" format ContentPart with "caption" -- If chapter generates text content ABOUT a document/image/data → assign ContentPart with "instruction": - - Prefer "extracted" format if available (contains analyzed/extracted content) - - If only "object" format is available, use "object" format with "instruction" (to write ABOUT the image/document) -- If chapter's generationHint or purpose relates to a document/image/data mentioned in user request → it MUST have ContentParts assigned -- Multiple chapters might assign the same ContentPart (e.g., one chapter displays image, another writes about it) -- Use ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above -- Empty contentParts are only allowed if chapter generates content WITHOUT referencing any documents/images/data from the user request - -CRITICAL RULE: If the user request mentions BOTH: - a) Documents/images/data (listed in AVAILABLE CONTENT PARTS above), AND - b) Generic content types (article text, main content, body text, etc.) -Then chapters that generate those generic content types MUST assign the relevant ContentParts, because the content should relate to or be based on the provided documents/images/data. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential information only -- AVOID verbose, lengthy, or repetitive text - be concise and direct -- Prioritize FACTS over filler text - no introductions like "In this chapter..." -- Minimize system resources: shorter content = faster processing -- Quality over quantity: precise, meaningful content rather than padding - -## CHAPTER STRUCTURE REQUIREMENTS -- Generate chapters based on USER REQUEST - analyze what structure the user wants -- Create ONLY the minimum chapters needed to cover the user's request - avoid over-structuring -- HARD LIMIT: Maximum 7 chapters per document. If the topic can be covered in fewer, prefer fewer. Combine related topics into single chapters rather than creating many small ones. -- IMPORTANT: Each chapter MUST have ALL these fields: - - id: Unique identifier (e.g., "chapter_1") - - level: Heading level (1, 2, 3, etc.) - - title: Chapter title - - contentParts: Object mapping ContentPart IDs to usage instructions (MUST assign if chapter relates to documents/data from user request) - - generationHint: Description of what content to generate (including formatting/styling requirements) - - sections: Empty array [] (REQUIRED - sections are generated in next phase) -- contentParts: {"partId": {"instruction": "..."} or {"caption": "..."} or both} - Assign ContentParts as required by CONTENT ASSIGNMENT RULE above -- The "instruction" field for each ContentPart MUST contain ALL relevant details from the USER REQUEST that apply to content extraction for this specific chapter. Include all formatting rules, data requirements, constraints, and specifications mentioned in the user request that are relevant for processing this ContentPart in this chapter. -- generationHint: Keep CONCISE but include relevant details from the USER REQUEST. Focus on WHAT to generate, not HOW to phrase it verbosely. -- The number of chapters depends on the user request - create only what is requested. Do NOT create chapters for topics without available data. - -CRITICAL: Only create chapters for CONTENT sections, not for formatting/styling requirements. Formatting/styling requirements to be included in each generationHint if needed. - -## DOCUMENT STRUCTURE - -For each document, determine: -- outputFormat: From USER REQUEST (explicit mention or infer from purpose/content type). Default: "txt". Multiple documents can have different formats. -- language: From USER REQUEST (map to ISO 639-1: de, en, fr, it...). Default: "de". Multiple documents can have different languages. -- chapters: Structure appropriately for the format (e.g., pptx=slides, docx=sections, xlsx=worksheets). Match format capabilities and constraints. - -Required JSON fields: -- metadata: {"title": "...", "language": "..."} -- documents: Array with id, title, filename, outputFormat, language, chapters[] -- chapters: Array with id, level, title, contentParts, generationHint, sections[] - -EXAMPLE STRUCTURE (for reference only - adapt to user request): -{ - "metadata": { - "title": "Document Title", - "language": "de" - }, - "documents": [{ - "id": "doc_1", - "title": "Document Title", - "filename": "document.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Chapter Title", - "contentParts": { - "extracted_part_id": { - "instruction": "Use extracted content with ALL relevant details from user request" - } - }, - "generationHint": "Detailed description including ALL relevant details from user request for this chapter", - "sections": [] - } - ] - }] -} - -CRITICAL INSTRUCTIONS: -- Generate chapters based on USER REQUEST, NOT based on the example above -- The example shows the JSON structure format, NOT the required chapters -- Create only the chapters that match the user's request -- Adapt chapter titles and structure to match the user's specific request -- Determine outputFormat and language for each document by analyzing the USER REQUEST above -- The example shows placeholders "txt" and "de" - YOU MUST REPLACE THESE with actual values determined from the USER REQUEST - -MANDATORY CONTENT ASSIGNMENT CHECK: -For each chapter, verify: -1. Does the user request mention documents/images/data? (e.g., "photo", "image", "document", "data", "based on", "about") -2. Does this chapter's generationHint, title, or purpose relate to those documents/images/data mentioned in step 1? - - Examples: "article about the photo", "text describing the image", "analysis of the document", "content based on the data" - - Even if chapter doesn't explicitly say "about the image", if user request mentions both the image AND this chapter's content type → relate them -3. If YES to both → chapter MUST have contentParts assigned (cannot be empty {}) -4. If ContentPart is "object" format and chapter needs to write ABOUT it → assign with "instruction" field, not just "caption" - -OUTPUT FORMAT: Start with { and end with }. Do NOT use markdown code fences (```json). Do NOT add explanatory text before or after the JSON. Return ONLY the JSON object itself. diff --git a/prompts/20260322-174011-008-chapter_structure_generation_response.txt b/prompts/20260322-174011-008-chapter_structure_generation_response.txt deleted file mode 100644 index a3816fca..00000000 --- a/prompts/20260322-174011-008-chapter_structure_generation_response.txt +++ /dev/null @@ -1,41 +0,0 @@ -{ - "metadata": { - "title": "Email Entwurf", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "Email Entwurf", - "filename": "email_entwurf.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Einleitung", - "contentParts": {}, - "generationHint": "Einleitung der E-Mail, Begrüßung und Einführung in das Thema.", - "sections": [] - }, - { - "id": "chapter_2", - "level": 1, - "title": "Hauptteil", - "contentParts": {}, - "generationHint": "Hauptinhalt der E-Mail, Details und relevante Informationen.", - "sections": [] - }, - { - "id": "chapter_3", - "level": 1, - "title": "Schluss", - "contentParts": {}, - "generationHint": "Abschluss der E-Mail, Zusammenfassung und Grußformel.", - "sections": [] - } - ] - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174011-009-chapter_structure_generation_final_result.txt b/prompts/20260322-174011-009-chapter_structure_generation_final_result.txt deleted file mode 100644 index a3816fca..00000000 --- a/prompts/20260322-174011-009-chapter_structure_generation_final_result.txt +++ /dev/null @@ -1,41 +0,0 @@ -{ - "metadata": { - "title": "Email Entwurf", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "Email Entwurf", - "filename": "email_entwurf.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Einleitung", - "contentParts": {}, - "generationHint": "Einleitung der E-Mail, Begrüßung und Einführung in das Thema.", - "sections": [] - }, - { - "id": "chapter_2", - "level": 1, - "title": "Hauptteil", - "contentParts": {}, - "generationHint": "Hauptinhalt der E-Mail, Details und relevante Informationen.", - "sections": [] - }, - { - "id": "chapter_3", - "level": 1, - "title": "Schluss", - "contentParts": {}, - "generationHint": "Abschluss der E-Mail, Zusammenfassung und Grußformel.", - "sections": [] - } - ] - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174149-010-chapter_structure_generation_prompt.txt b/prompts/20260322-174149-010-chapter_structure_generation_prompt.txt deleted file mode 100644 index 49ba0ee5..00000000 --- a/prompts/20260322-174149-010-chapter_structure_generation_prompt.txt +++ /dev/null @@ -1,119 +0,0 @@ -# TASK: Plan Document Structure (Documents + Chapters) - -This is a STRUCTURE PLANNING task. You define which documents to create and which chapters each document will have. -Chapter CONTENT will be generated in a later step - here you only plan the STRUCTURE and assign content references. -Return EXACTLY ONE complete JSON object. Do not generate multiple JSON objects, alternatives, or variations. Do not use separators like "---" between JSON objects. - -## USER REQUEST (for context) -``` -entwirf eine email mit dem inhalt des files davor -``` - -## AVAILABLE CONTENT PARTS - -(No content parts available) - -## CONTENT ASSIGNMENT RULE - -CRITICAL: Every chapter MUST have contentParts assigned if it relates to documents/images/data from the user request. -If the user request mentions documents/images/data, then EVERY chapter that generates content related to those references MUST assign the relevant ContentParts explicitly. - -Assignment logic: -- If chapter DISPLAYS a document/image → assign "object" format ContentPart with "caption" -- If chapter generates text content ABOUT a document/image/data → assign ContentPart with "instruction": - - Prefer "extracted" format if available (contains analyzed/extracted content) - - If only "object" format is available, use "object" format with "instruction" (to write ABOUT the image/document) -- If chapter's generationHint or purpose relates to a document/image/data mentioned in user request → it MUST have ContentParts assigned -- Multiple chapters might assign the same ContentPart (e.g., one chapter displays image, another writes about it) -- Use ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above -- Empty contentParts are only allowed if chapter generates content WITHOUT referencing any documents/images/data from the user request - -CRITICAL RULE: If the user request mentions BOTH: - a) Documents/images/data (listed in AVAILABLE CONTENT PARTS above), AND - b) Generic content types (article text, main content, body text, etc.) -Then chapters that generate those generic content types MUST assign the relevant ContentParts, because the content should relate to or be based on the provided documents/images/data. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential information only -- AVOID verbose, lengthy, or repetitive text - be concise and direct -- Prioritize FACTS over filler text - no introductions like "In this chapter..." -- Minimize system resources: shorter content = faster processing -- Quality over quantity: precise, meaningful content rather than padding - -## CHAPTER STRUCTURE REQUIREMENTS -- Generate chapters based on USER REQUEST - analyze what structure the user wants -- Create ONLY the minimum chapters needed to cover the user's request - avoid over-structuring -- HARD LIMIT: Maximum 7 chapters per document. If the topic can be covered in fewer, prefer fewer. Combine related topics into single chapters rather than creating many small ones. -- IMPORTANT: Each chapter MUST have ALL these fields: - - id: Unique identifier (e.g., "chapter_1") - - level: Heading level (1, 2, 3, etc.) - - title: Chapter title - - contentParts: Object mapping ContentPart IDs to usage instructions (MUST assign if chapter relates to documents/data from user request) - - generationHint: Description of what content to generate (including formatting/styling requirements) - - sections: Empty array [] (REQUIRED - sections are generated in next phase) -- contentParts: {"partId": {"instruction": "..."} or {"caption": "..."} or both} - Assign ContentParts as required by CONTENT ASSIGNMENT RULE above -- The "instruction" field for each ContentPart MUST contain ALL relevant details from the USER REQUEST that apply to content extraction for this specific chapter. Include all formatting rules, data requirements, constraints, and specifications mentioned in the user request that are relevant for processing this ContentPart in this chapter. -- generationHint: Keep CONCISE but include relevant details from the USER REQUEST. Focus on WHAT to generate, not HOW to phrase it verbosely. -- The number of chapters depends on the user request - create only what is requested. Do NOT create chapters for topics without available data. - -CRITICAL: Only create chapters for CONTENT sections, not for formatting/styling requirements. Formatting/styling requirements to be included in each generationHint if needed. - -## DOCUMENT STRUCTURE - -For each document, determine: -- outputFormat: From USER REQUEST (explicit mention or infer from purpose/content type). Default: "txt". Multiple documents can have different formats. -- language: From USER REQUEST (map to ISO 639-1: de, en, fr, it...). Default: "de". Multiple documents can have different languages. -- chapters: Structure appropriately for the format (e.g., pptx=slides, docx=sections, xlsx=worksheets). Match format capabilities and constraints. - -Required JSON fields: -- metadata: {"title": "...", "language": "..."} -- documents: Array with id, title, filename, outputFormat, language, chapters[] -- chapters: Array with id, level, title, contentParts, generationHint, sections[] - -EXAMPLE STRUCTURE (for reference only - adapt to user request): -{ - "metadata": { - "title": "Document Title", - "language": "de" - }, - "documents": [{ - "id": "doc_1", - "title": "Document Title", - "filename": "document.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Chapter Title", - "contentParts": { - "extracted_part_id": { - "instruction": "Use extracted content with ALL relevant details from user request" - } - }, - "generationHint": "Detailed description including ALL relevant details from user request for this chapter", - "sections": [] - } - ] - }] -} - -CRITICAL INSTRUCTIONS: -- Generate chapters based on USER REQUEST, NOT based on the example above -- The example shows the JSON structure format, NOT the required chapters -- Create only the chapters that match the user's request -- Adapt chapter titles and structure to match the user's specific request -- Determine outputFormat and language for each document by analyzing the USER REQUEST above -- The example shows placeholders "txt" and "de" - YOU MUST REPLACE THESE with actual values determined from the USER REQUEST - -MANDATORY CONTENT ASSIGNMENT CHECK: -For each chapter, verify: -1. Does the user request mention documents/images/data? (e.g., "photo", "image", "document", "data", "based on", "about") -2. Does this chapter's generationHint, title, or purpose relate to those documents/images/data mentioned in step 1? - - Examples: "article about the photo", "text describing the image", "analysis of the document", "content based on the data" - - Even if chapter doesn't explicitly say "about the image", if user request mentions both the image AND this chapter's content type → relate them -3. If YES to both → chapter MUST have contentParts assigned (cannot be empty {}) -4. If ContentPart is "object" format and chapter needs to write ABOUT it → assign with "instruction" field, not just "caption" - -OUTPUT FORMAT: Start with { and end with }. Do NOT use markdown code fences (```json). Do NOT add explanatory text before or after the JSON. Return ONLY the JSON object itself. diff --git a/prompts/20260322-174152-011-chapter_structure_generation_response.txt b/prompts/20260322-174152-011-chapter_structure_generation_response.txt deleted file mode 100644 index 11b0b15b..00000000 --- a/prompts/20260322-174152-011-chapter_structure_generation_response.txt +++ /dev/null @@ -1,41 +0,0 @@ -{ - "metadata": { - "title": "Email Entwurf", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "Email Entwurf", - "filename": "email_entwurf.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Einleitung", - "contentParts": {}, - "generationHint": "Einleitung der E-Mail, die den Zweck und den Kontext der Nachricht kurz beschreibt.", - "sections": [] - }, - { - "id": "chapter_2", - "level": 1, - "title": "Hauptinhalt", - "contentParts": {}, - "generationHint": "Hauptteil der E-Mail, der die wichtigsten Informationen und Details enthält.", - "sections": [] - }, - { - "id": "chapter_3", - "level": 1, - "title": "Abschluss", - "contentParts": {}, - "generationHint": "Abschluss der E-Mail mit einer Zusammenfassung oder einem abschließenden Gedanken.", - "sections": [] - } - ] - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174152-012-chapter_structure_generation_final_result.txt b/prompts/20260322-174152-012-chapter_structure_generation_final_result.txt deleted file mode 100644 index 11b0b15b..00000000 --- a/prompts/20260322-174152-012-chapter_structure_generation_final_result.txt +++ /dev/null @@ -1,41 +0,0 @@ -{ - "metadata": { - "title": "Email Entwurf", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "Email Entwurf", - "filename": "email_entwurf.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Einleitung", - "contentParts": {}, - "generationHint": "Einleitung der E-Mail, die den Zweck und den Kontext der Nachricht kurz beschreibt.", - "sections": [] - }, - { - "id": "chapter_2", - "level": 1, - "title": "Hauptinhalt", - "contentParts": {}, - "generationHint": "Hauptteil der E-Mail, der die wichtigsten Informationen und Details enthält.", - "sections": [] - }, - { - "id": "chapter_3", - "level": 1, - "title": "Abschluss", - "contentParts": {}, - "generationHint": "Abschluss der E-Mail mit einer Zusammenfassung oder einem abschließenden Gedanken.", - "sections": [] - } - ] - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174152-013-chapter_structure_chapter_1_prompt.txt b/prompts/20260322-174152-013-chapter_structure_chapter_1_prompt.txt deleted file mode 100644 index 6d4a119b..00000000 --- a/prompts/20260322-174152-013-chapter_structure_chapter_1_prompt.txt +++ /dev/null @@ -1,73 +0,0 @@ -TASK: Generate Chapter Sections Structure - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -CHAPTER: Einleitung (Level 1, ID: chapter_1) -GENERATION HINT: Einleitung der E-Mail, die den Zweck und den Kontext der Nachricht kurz beschreibt. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT sections: Focus on essential information only -- AVOID creating too many sections - combine related content where possible -- Each section should serve a clear purpose with meaningful data -- If no relevant data exists for a topic, do NOT create a section for it -- Prefer ONE comprehensive section over multiple sparse sections -- HARD LIMIT: Maximum 5 sections per chapter. Combine related subtopics into single sections to stay within this limit. - -**CRITICAL**: The chapter's generationHint above describes what content this chapter should generate. If the generationHint references documents/images/data, then EACH section that generates content for this chapter MUST assign the relevant ContentParts from AVAILABLE CONTENT PARTS below. - -NOTE: Chapter already has a heading section. Do NOT generate a heading for the chapter title. - -## SECTION INDEPENDENCE -- Each section is independent and self-contained -- One section does NOT have information about another section -- Each section must provide its own context and be understandable alone - -AVAILABLE CONTENT PARTS: - -(No content parts specified for this chapter) - -## CONTENT ASSIGNMENT RULE - CRITICAL -If AVAILABLE CONTENT PARTS are listed above, then EVERY section that generates content related to those ContentParts MUST assign them explicitly. - -**Assignment logic:** -- If section generates text content ABOUT a ContentPart → assign "extracted" format ContentPart with appropriate instruction -- If section DISPLAYS a ContentPart → assign "object" format ContentPart -- If section's generationHint or purpose relates to a ContentPart listed above → it MUST have contentPartIds assigned -- If chapter's generationHint references documents/images/data AND section generates content for that chapter → section MUST assign relevant ContentParts -- Empty contentPartIds [] are only allowed if section generates content WITHOUT referencing any available ContentParts AND WITHOUT relating to chapter's generationHint - -## ACCEPTED CONTENT TYPES FOR THIS FORMAT -The document output format (txt) accepts only the following content types: -table, bullet_list, heading, paragraph, code_block - -**CRITICAL**: Only create sections with content types from this list. Other types will fail. - -useAiCall RULE (simple): -- useAiCall: true → Content needs AI processing (extract, transform, generate, filter, summarize) -- useAiCall: false → Content can be inserted directly without changes (Format is "object" or "reference") - -RETURN JSON: -{ - "sections": [ - { - "id": "section_1", - "content_type": "table", - "contentPartIds": ["extracted_part_id"], - "generationHint": "Description of what to extract or generate", - "useAiCall": true, - "elements": [] - } - ] -} - -**MANDATORY CONTENT ASSIGNMENT CHECK:** -For each section, verify: -1. Are ContentParts listed in AVAILABLE CONTENT PARTS above? -2. Does this section's generationHint or purpose relate to those ContentParts? -3. If YES to both → section MUST have contentPartIds assigned (cannot be empty []) -4. Assign ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above - -IMAGE SECTIONS: -- For image sections, always provide a "caption" field with a descriptive caption for the image. - -Return only valid JSON. Do not include any explanatory text outside the JSON. diff --git a/prompts/20260322-174153-014-chapter_structure_chapter_2_prompt.txt b/prompts/20260322-174153-014-chapter_structure_chapter_2_prompt.txt deleted file mode 100644 index 23e8978b..00000000 --- a/prompts/20260322-174153-014-chapter_structure_chapter_2_prompt.txt +++ /dev/null @@ -1,73 +0,0 @@ -TASK: Generate Chapter Sections Structure - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -CHAPTER: Hauptinhalt (Level 1, ID: chapter_2) -GENERATION HINT: Hauptteil der E-Mail, der die wichtigsten Informationen und Details enthält. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT sections: Focus on essential information only -- AVOID creating too many sections - combine related content where possible -- Each section should serve a clear purpose with meaningful data -- If no relevant data exists for a topic, do NOT create a section for it -- Prefer ONE comprehensive section over multiple sparse sections -- HARD LIMIT: Maximum 5 sections per chapter. Combine related subtopics into single sections to stay within this limit. - -**CRITICAL**: The chapter's generationHint above describes what content this chapter should generate. If the generationHint references documents/images/data, then EACH section that generates content for this chapter MUST assign the relevant ContentParts from AVAILABLE CONTENT PARTS below. - -NOTE: Chapter already has a heading section. Do NOT generate a heading for the chapter title. - -## SECTION INDEPENDENCE -- Each section is independent and self-contained -- One section does NOT have information about another section -- Each section must provide its own context and be understandable alone - -AVAILABLE CONTENT PARTS: - -(No content parts specified for this chapter) - -## CONTENT ASSIGNMENT RULE - CRITICAL -If AVAILABLE CONTENT PARTS are listed above, then EVERY section that generates content related to those ContentParts MUST assign them explicitly. - -**Assignment logic:** -- If section generates text content ABOUT a ContentPart → assign "extracted" format ContentPart with appropriate instruction -- If section DISPLAYS a ContentPart → assign "object" format ContentPart -- If section's generationHint or purpose relates to a ContentPart listed above → it MUST have contentPartIds assigned -- If chapter's generationHint references documents/images/data AND section generates content for that chapter → section MUST assign relevant ContentParts -- Empty contentPartIds [] are only allowed if section generates content WITHOUT referencing any available ContentParts AND WITHOUT relating to chapter's generationHint - -## ACCEPTED CONTENT TYPES FOR THIS FORMAT -The document output format (txt) accepts only the following content types: -table, bullet_list, heading, paragraph, code_block - -**CRITICAL**: Only create sections with content types from this list. Other types will fail. - -useAiCall RULE (simple): -- useAiCall: true → Content needs AI processing (extract, transform, generate, filter, summarize) -- useAiCall: false → Content can be inserted directly without changes (Format is "object" or "reference") - -RETURN JSON: -{ - "sections": [ - { - "id": "section_1", - "content_type": "table", - "contentPartIds": ["extracted_part_id"], - "generationHint": "Description of what to extract or generate", - "useAiCall": true, - "elements": [] - } - ] -} - -**MANDATORY CONTENT ASSIGNMENT CHECK:** -For each section, verify: -1. Are ContentParts listed in AVAILABLE CONTENT PARTS above? -2. Does this section's generationHint or purpose relate to those ContentParts? -3. If YES to both → section MUST have contentPartIds assigned (cannot be empty []) -4. Assign ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above - -IMAGE SECTIONS: -- For image sections, always provide a "caption" field with a descriptive caption for the image. - -Return only valid JSON. Do not include any explanatory text outside the JSON. diff --git a/prompts/20260322-174153-015-chapter_structure_chapter_3_prompt.txt b/prompts/20260322-174153-015-chapter_structure_chapter_3_prompt.txt deleted file mode 100644 index f11981bb..00000000 --- a/prompts/20260322-174153-015-chapter_structure_chapter_3_prompt.txt +++ /dev/null @@ -1,73 +0,0 @@ -TASK: Generate Chapter Sections Structure - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -CHAPTER: Abschluss (Level 1, ID: chapter_3) -GENERATION HINT: Abschluss der E-Mail mit einer Zusammenfassung oder einem abschließenden Gedanken. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT sections: Focus on essential information only -- AVOID creating too many sections - combine related content where possible -- Each section should serve a clear purpose with meaningful data -- If no relevant data exists for a topic, do NOT create a section for it -- Prefer ONE comprehensive section over multiple sparse sections -- HARD LIMIT: Maximum 5 sections per chapter. Combine related subtopics into single sections to stay within this limit. - -**CRITICAL**: The chapter's generationHint above describes what content this chapter should generate. If the generationHint references documents/images/data, then EACH section that generates content for this chapter MUST assign the relevant ContentParts from AVAILABLE CONTENT PARTS below. - -NOTE: Chapter already has a heading section. Do NOT generate a heading for the chapter title. - -## SECTION INDEPENDENCE -- Each section is independent and self-contained -- One section does NOT have information about another section -- Each section must provide its own context and be understandable alone - -AVAILABLE CONTENT PARTS: - -(No content parts specified for this chapter) - -## CONTENT ASSIGNMENT RULE - CRITICAL -If AVAILABLE CONTENT PARTS are listed above, then EVERY section that generates content related to those ContentParts MUST assign them explicitly. - -**Assignment logic:** -- If section generates text content ABOUT a ContentPart → assign "extracted" format ContentPart with appropriate instruction -- If section DISPLAYS a ContentPart → assign "object" format ContentPart -- If section's generationHint or purpose relates to a ContentPart listed above → it MUST have contentPartIds assigned -- If chapter's generationHint references documents/images/data AND section generates content for that chapter → section MUST assign relevant ContentParts -- Empty contentPartIds [] are only allowed if section generates content WITHOUT referencing any available ContentParts AND WITHOUT relating to chapter's generationHint - -## ACCEPTED CONTENT TYPES FOR THIS FORMAT -The document output format (txt) accepts only the following content types: -table, bullet_list, heading, paragraph, code_block - -**CRITICAL**: Only create sections with content types from this list. Other types will fail. - -useAiCall RULE (simple): -- useAiCall: true → Content needs AI processing (extract, transform, generate, filter, summarize) -- useAiCall: false → Content can be inserted directly without changes (Format is "object" or "reference") - -RETURN JSON: -{ - "sections": [ - { - "id": "section_1", - "content_type": "table", - "contentPartIds": ["extracted_part_id"], - "generationHint": "Description of what to extract or generate", - "useAiCall": true, - "elements": [] - } - ] -} - -**MANDATORY CONTENT ASSIGNMENT CHECK:** -For each section, verify: -1. Are ContentParts listed in AVAILABLE CONTENT PARTS above? -2. Does this section's generationHint or purpose relate to those ContentParts? -3. If YES to both → section MUST have contentPartIds assigned (cannot be empty []) -4. Assign ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above - -IMAGE SECTIONS: -- For image sections, always provide a "caption" field with a descriptive caption for the image. - -Return only valid JSON. Do not include any explanatory text outside the JSON. diff --git a/prompts/20260322-174155-016-chapter_structure_chapter_3_response.txt b/prompts/20260322-174155-016-chapter_structure_chapter_3_response.txt deleted file mode 100644 index 84918b1f..00000000 --- a/prompts/20260322-174155-016-chapter_structure_chapter_3_response.txt +++ /dev/null @@ -1,16 +0,0 @@ -```json -{ - "sections": [ - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Zusammenfassung der E-Mail-Inhalte und abschließende Gedanken", - "useAiCall": true, - "elements": [ - "In der abschließenden Zusammenfassung der E-Mail möchten wir die wichtigsten Punkte noch einmal hervorheben. Es ist entscheidend, dass alle besprochenen Themen klar und prägnant zusammengefasst werden, um Missverständnisse zu vermeiden. Abschließend möchten wir betonen, wie wichtig die Zusammenarbeit und der kontinuierliche Dialog sind, um die gesteckten Ziele erfolgreich zu erreichen. Wir danken Ihnen für Ihre Aufmerksamkeit und freuen uns auf die weitere Zusammenarbeit." - ] - } - ] -} -``` \ No newline at end of file diff --git a/prompts/20260322-174157-017-chapter_structure_chapter_1_response.txt b/prompts/20260322-174157-017-chapter_structure_chapter_1_response.txt deleted file mode 100644 index 9676ecae..00000000 --- a/prompts/20260322-174157-017-chapter_structure_chapter_1_response.txt +++ /dev/null @@ -1,39 +0,0 @@ -```json -{ - "sections": [ - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Kurze Einführung in den Zweck der E-Mail", - "useAiCall": true, - "elements": [ - "Diese E-Mail dient dazu, den Empfänger über den Zweck und den Kontext der Nachricht zu informieren. Sie bietet eine kurze Übersicht über die Hauptthemen, die in den folgenden Abschnitten behandelt werden." - ] - }, - { - "id": "section_2", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Kontext der Nachricht und warum sie wichtig ist", - "useAiCall": true, - "elements": [ - "Der Kontext dieser Nachricht ist entscheidend, um die Relevanz und Dringlichkeit der behandelten Themen zu verstehen. Es wird erläutert, warum diese Informationen für den Empfänger von Bedeutung sind und welche Schritte möglicherweise erforderlich sind." - ] - }, - { - "id": "section_3", - "content_type": "bullet_list", - "contentPartIds": [], - "generationHint": "Hauptpunkte der Nachricht", - "useAiCall": true, - "elements": [ - "Zweck der E-Mail", - "Wichtige Informationen und Updates", - "Erforderliche Aktionen oder Antworten", - "Relevante Fristen oder Termine" - ] - } - ] -} -``` \ No newline at end of file diff --git a/prompts/20260322-174201-018-chapter_structure_chapter_2_response.txt b/prompts/20260322-174201-018-chapter_structure_chapter_2_response.txt deleted file mode 100644 index f3c9e111..00000000 --- a/prompts/20260322-174201-018-chapter_structure_chapter_2_response.txt +++ /dev/null @@ -1,66 +0,0 @@ -```json -{ - "sections": [ - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Einleitung des Hauptinhalts mit einer kurzen Zusammenfassung der wichtigsten Punkte.", - "useAiCall": true, - "elements": [ - "Der Hauptinhalt dieser E-Mail bietet eine umfassende Übersicht über die wesentlichen Informationen, die für den Empfänger von Bedeutung sind. In den folgenden Abschnitten werden die wichtigsten Details und Anweisungen klar und prägnant dargestellt." - ] - }, - { - "id": "section_2", - "content_type": "bullet_list", - "contentPartIds": [], - "generationHint": "Liste der wichtigsten Informationen oder Anweisungen.", - "useAiCall": true, - "elements": [ - "Wichtiger Termin: 15. November 2023", - "Erforderliche Dokumente: Reisepass, Visum", - "Kontaktperson: Herr Müller, erreichbar unter mueller@example.com", - "Nächste Schritte: Anmeldung bis zum 10. November 2023" - ] - }, - { - "id": "section_3", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Detaillierte Beschreibung eines spezifischen Themas oder einer Anweisung.", - "useAiCall": true, - "elements": [ - "Bitte beachten Sie, dass alle Teilnehmer vor dem 10. November 2023 registriert sein müssen, um an der Veranstaltung teilnehmen zu können. Die Registrierung erfolgt über das Online-Portal, das Ihnen per E-Mail zugesandt wurde. Stellen Sie sicher, dass alle erforderlichen Dokumente hochgeladen werden, um Verzögerungen zu vermeiden." - ] - }, - { - "id": "section_4", - "content_type": "table", - "contentPartIds": [], - "generationHint": "Tabelle mit den wichtigsten Terminen und Fristen.", - "useAiCall": true, - "elements": [ - { - "headers": ["Ereignis", "Datum", "Details"], - "rows": [ - ["Anmeldeschluss", "10. November 2023", "Online-Registrierung erforderlich"], - ["Veranstaltungstermin", "15. November 2023", "Beginn um 9:00 Uhr"], - ["Dokumenteneinreichung", "Bis 12. November 2023", "Alle Dokumente müssen vollständig sein"] - ] - } - ] - }, - { - "id": "section_5", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Abschluss des Hauptinhalts mit einem Aufruf zum Handeln oder einer abschließenden Bemerkung.", - "useAiCall": true, - "elements": [ - "Wir freuen uns auf Ihre Teilnahme und stehen für Rückfragen jederzeit zur Verfügung. Bitte zögern Sie nicht, uns zu kontaktieren, falls Sie weitere Informationen benötigen. Ihre rechtzeitige Anmeldung wird sehr geschätzt." - ] - } - ] -} -``` \ No newline at end of file diff --git a/prompts/20260322-174201-019-chapter_1_section_section_1_prompt.txt b/prompts/20260322-174201-019-chapter_1_section_section_1_prompt.txt deleted file mode 100644 index 0c0117f1..00000000 --- a/prompts/20260322-174201-019-chapter_1_section_section_1_prompt.txt +++ /dev/null @@ -1,56 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_1 -- Content Type: paragraph -- Generation Hint: Kurze Einführung in den Zweck der E-Mail -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Following sections: -- section_2 (paragraph): -- section_3 (bullet_list): - diff --git a/prompts/20260322-174201-020-chapter_1_section_section_2_prompt.txt b/prompts/20260322-174201-020-chapter_1_section_section_2_prompt.txt deleted file mode 100644 index f9b48541..00000000 --- a/prompts/20260322-174201-020-chapter_1_section_section_2_prompt.txt +++ /dev/null @@ -1,59 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_2 -- Content Type: paragraph -- Generation Hint: Kontext der Nachricht und warum sie wichtig ist -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): - -Following sections: -- section_3 (bullet_list): -- section_1 (paragraph): - diff --git a/prompts/20260322-174201-021-chapter_1_section_section_3_prompt.txt b/prompts/20260322-174201-021-chapter_1_section_section_3_prompt.txt deleted file mode 100644 index 92781040..00000000 --- a/prompts/20260322-174201-021-chapter_1_section_section_3_prompt.txt +++ /dev/null @@ -1,60 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_3 -- Content Type: bullet_list -- Generation Hint: Hauptpunkte der Nachricht -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (bullet_list). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "bullet_list", - "content": {{"items": ["Item 1", "Item 2", "Item 3"]}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): -- section_2 (paragraph): - -Following sections: -- section_1 (paragraph): -- section_2 (bullet_list): - diff --git a/prompts/20260322-174201-022-chapter_2_section_section_1_prompt.txt b/prompts/20260322-174201-022-chapter_2_section_section_1_prompt.txt deleted file mode 100644 index 2797be86..00000000 --- a/prompts/20260322-174201-022-chapter_2_section_section_1_prompt.txt +++ /dev/null @@ -1,56 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_1 -- Content Type: paragraph -- Generation Hint: Einleitung des Hauptinhalts mit einer kurzen Zusammenfassung der wichtigsten Punkte. -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Following sections: -- section_2 (paragraph): -- section_3 (bullet_list): - diff --git a/prompts/20260322-174202-023-chapter_2_section_section_2_prompt.txt b/prompts/20260322-174202-023-chapter_2_section_section_2_prompt.txt deleted file mode 100644 index e6d66ec5..00000000 --- a/prompts/20260322-174202-023-chapter_2_section_section_2_prompt.txt +++ /dev/null @@ -1,59 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_2 -- Content Type: bullet_list -- Generation Hint: Liste der wichtigsten Informationen oder Anweisungen. -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (bullet_list). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "bullet_list", - "content": {{"items": ["Item 1", "Item 2", "Item 3"]}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): - -Following sections: -- section_3 (bullet_list): -- section_1 (paragraph): - diff --git a/prompts/20260322-174203-024-chapter_1_section_section_1_response.txt b/prompts/20260322-174203-024-chapter_1_section_section_1_response.txt deleted file mode 100644 index bf0b95b7..00000000 --- a/prompts/20260322-174203-024-chapter_1_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Diese E-Mail dient dazu, den Zweck und die wichtigsten Informationen des vorherigen Dokuments zusammenzufassen. Sie bietet eine kurze Übersicht über die Hauptpunkte und soll als Einführung in die detaillierteren Abschnitte des Dokuments dienen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174203-025-chapter_1_section_section_1_response.txt b/prompts/20260322-174203-025-chapter_1_section_section_1_response.txt deleted file mode 100644 index bf0b95b7..00000000 --- a/prompts/20260322-174203-025-chapter_1_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Diese E-Mail dient dazu, den Zweck und die wichtigsten Informationen des vorherigen Dokuments zusammenzufassen. Sie bietet eine kurze Übersicht über die Hauptpunkte und soll als Einführung in die detaillierteren Abschnitte des Dokuments dienen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174203-026-chapter_2_section_section_3_prompt.txt b/prompts/20260322-174203-026-chapter_2_section_section_3_prompt.txt deleted file mode 100644 index 2eb34230..00000000 --- a/prompts/20260322-174203-026-chapter_2_section_section_3_prompt.txt +++ /dev/null @@ -1,60 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_3 -- Content Type: paragraph -- Generation Hint: Detaillierte Beschreibung eines spezifischen Themas oder einer Anweisung. -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): -- section_2 (paragraph): - -Following sections: -- section_1 (paragraph): -- section_2 (bullet_list): - diff --git a/prompts/20260322-174203-027-chapter_2_section_section_1_response.txt b/prompts/20260322-174203-027-chapter_2_section_section_1_response.txt deleted file mode 100644 index c99ec0fa..00000000 --- a/prompts/20260322-174203-027-chapter_2_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "In dieser Einleitung werden die Hauptpunkte des Dokuments zusammengefasst. Der Fokus liegt auf der klaren Darstellung der wichtigsten Informationen, um dem Leser einen schnellen Überblick zu verschaffen. Die folgenden Abschnitte bieten detaillierte Einblicke und ergänzende Details zu den hier genannten Themen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174203-028-chapter_2_section_section_1_response.txt b/prompts/20260322-174203-028-chapter_2_section_section_1_response.txt deleted file mode 100644 index c99ec0fa..00000000 --- a/prompts/20260322-174203-028-chapter_2_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "In dieser Einleitung werden die Hauptpunkte des Dokuments zusammengefasst. Der Fokus liegt auf der klaren Darstellung der wichtigsten Informationen, um dem Leser einen schnellen Überblick zu verschaffen. Die folgenden Abschnitte bieten detaillierte Einblicke und ergänzende Details zu den hier genannten Themen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174203-029-chapter_2_section_section_4_prompt.txt b/prompts/20260322-174203-029-chapter_2_section_section_4_prompt.txt deleted file mode 100644 index f60e9ca5..00000000 --- a/prompts/20260322-174203-029-chapter_2_section_section_4_prompt.txt +++ /dev/null @@ -1,60 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_4 -- Content Type: table -- Generation Hint: Tabelle mit den wichtigsten Terminen und Fristen. -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (table). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "table", - "content": {{"headers": ["Column1", "Column2"], "rows": [["Value1", "Value2"], ["Value3", "Value4"]]}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_2 (paragraph): -- section_3 (bullet_list): - -Following sections: -- section_2 (bullet_list): -- section_3 (paragraph): - diff --git a/prompts/20260322-174203-030-chapter_2_section_section_2_response.txt b/prompts/20260322-174203-030-chapter_2_section_section_2_response.txt deleted file mode 100644 index 0b16b709..00000000 --- a/prompts/20260322-174203-030-chapter_2_section_section_2_response.txt +++ /dev/null @@ -1,16 +0,0 @@ -{ - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Betreff der E-Mail klar und prägnant formulieren.", - "Anrede personalisieren, um den Empfänger direkt anzusprechen.", - "Hauptinhalt der E-Mail in kurzen, prägnanten Sätzen darstellen.", - "Wichtige Informationen oder Anweisungen in Stichpunkten auflisten.", - "Abschließende Grußformel und Kontaktdaten angeben." - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174203-031-chapter_2_section_section_2_response.txt b/prompts/20260322-174203-031-chapter_2_section_section_2_response.txt deleted file mode 100644 index 0b16b709..00000000 --- a/prompts/20260322-174203-031-chapter_2_section_section_2_response.txt +++ /dev/null @@ -1,16 +0,0 @@ -{ - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Betreff der E-Mail klar und prägnant formulieren.", - "Anrede personalisieren, um den Empfänger direkt anzusprechen.", - "Hauptinhalt der E-Mail in kurzen, prägnanten Sätzen darstellen.", - "Wichtige Informationen oder Anweisungen in Stichpunkten auflisten.", - "Abschließende Grußformel und Kontaktdaten angeben." - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174203-032-chapter_1_section_section_2_response.txt b/prompts/20260322-174203-032-chapter_1_section_section_2_response.txt deleted file mode 100644 index 5b285149..00000000 --- a/prompts/20260322-174203-032-chapter_1_section_section_2_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Die Nachricht ist von entscheidender Bedeutung, da sie wichtige Informationen übermittelt, die für die Empfänger relevant sind. Sie dient dazu, Klarheit zu schaffen, Missverständnisse zu vermeiden und die Empfänger über wesentliche Entwicklungen oder Entscheidungen zu informieren. Eine präzise und gut formulierte Nachricht trägt dazu bei, dass alle Beteiligten auf dem gleichen Stand sind und entsprechend handeln können. Dies fördert die Effizienz und Effektivität in der Kommunikation und im weiteren Handeln." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174203-033-chapter_1_section_section_2_response.txt b/prompts/20260322-174203-033-chapter_1_section_section_2_response.txt deleted file mode 100644 index 5b285149..00000000 --- a/prompts/20260322-174203-033-chapter_1_section_section_2_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Die Nachricht ist von entscheidender Bedeutung, da sie wichtige Informationen übermittelt, die für die Empfänger relevant sind. Sie dient dazu, Klarheit zu schaffen, Missverständnisse zu vermeiden und die Empfänger über wesentliche Entwicklungen oder Entscheidungen zu informieren. Eine präzise und gut formulierte Nachricht trägt dazu bei, dass alle Beteiligten auf dem gleichen Stand sind und entsprechend handeln können. Dies fördert die Effizienz und Effektivität in der Kommunikation und im weiteren Handeln." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174203-034-chapter_2_section_section_5_prompt.txt b/prompts/20260322-174203-034-chapter_2_section_section_5_prompt.txt deleted file mode 100644 index 54a520b1..00000000 --- a/prompts/20260322-174203-034-chapter_2_section_section_5_prompt.txt +++ /dev/null @@ -1,60 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_5 -- Content Type: paragraph -- Generation Hint: Abschluss des Hauptinhalts mit einem Aufruf zum Handeln oder einer abschließenden Bemerkung. -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_3 (bullet_list): -- section_1 (paragraph): - -Following sections: -- section_3 (paragraph): -- section_4 (table): - diff --git a/prompts/20260322-174203-035-chapter_3_section_section_1_prompt.txt b/prompts/20260322-174203-035-chapter_3_section_section_1_prompt.txt deleted file mode 100644 index 9f3c6661..00000000 --- a/prompts/20260322-174203-035-chapter_3_section_section_1_prompt.txt +++ /dev/null @@ -1,56 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_1 -- Content Type: paragraph -- Generation Hint: Zusammenfassung der E-Mail-Inhalte und abschließende Gedanken -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Following sections: -- section_2 (paragraph): -- section_3 (bullet_list): - diff --git a/prompts/20260322-174204-036-chapter_1_section_section_3_response.txt b/prompts/20260322-174204-036-chapter_1_section_section_3_response.txt deleted file mode 100644 index d37d8d72..00000000 --- a/prompts/20260322-174204-036-chapter_1_section_section_3_response.txt +++ /dev/null @@ -1,16 +0,0 @@ -{ - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Betreff der E-Mail klar und prägnant formulieren.", - "Einleitung mit einer kurzen Begrüßung und Vorstellung.", - "Hauptinhalt der Nachricht in klaren Punkten darstellen.", - "Wichtige Informationen oder Anfragen deutlich hervorheben.", - "Abschluss mit einem Dank und einer höflichen Verabschiedung." - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174204-037-chapter_1_section_section_3_response.txt b/prompts/20260322-174204-037-chapter_1_section_section_3_response.txt deleted file mode 100644 index d37d8d72..00000000 --- a/prompts/20260322-174204-037-chapter_1_section_section_3_response.txt +++ /dev/null @@ -1,16 +0,0 @@ -{ - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Betreff der E-Mail klar und prägnant formulieren.", - "Einleitung mit einer kurzen Begrüßung und Vorstellung.", - "Hauptinhalt der Nachricht in klaren Punkten darstellen.", - "Wichtige Informationen oder Anfragen deutlich hervorheben.", - "Abschluss mit einem Dank und einer höflichen Verabschiedung." - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174205-038-chapter_2_section_section_5_response.txt b/prompts/20260322-174205-038-chapter_2_section_section_5_response.txt deleted file mode 100644 index 964c7eaa..00000000 --- a/prompts/20260322-174205-038-chapter_2_section_section_5_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Vielen Dank, dass Sie sich die Zeit genommen haben, unseren Hauptinhalt zu lesen. Wir hoffen, dass die Informationen für Sie nützlich waren. Zögern Sie nicht, uns bei Fragen oder Anmerkungen zu kontaktieren. Wir freuen uns darauf, von Ihnen zu hören und stehen Ihnen jederzeit zur Verfügung, um Ihnen weiterzuhelfen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174205-039-chapter_2_section_section_5_response.txt b/prompts/20260322-174205-039-chapter_2_section_section_5_response.txt deleted file mode 100644 index 964c7eaa..00000000 --- a/prompts/20260322-174205-039-chapter_2_section_section_5_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Vielen Dank, dass Sie sich die Zeit genommen haben, unseren Hauptinhalt zu lesen. Wir hoffen, dass die Informationen für Sie nützlich waren. Zögern Sie nicht, uns bei Fragen oder Anmerkungen zu kontaktieren. Wir freuen uns darauf, von Ihnen zu hören und stehen Ihnen jederzeit zur Verfügung, um Ihnen weiterzuhelfen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174205-040-chapter_2_section_section_3_response.txt b/prompts/20260322-174205-040-chapter_2_section_section_3_response.txt deleted file mode 100644 index 9c3480ee..00000000 --- a/prompts/20260322-174205-040-chapter_2_section_section_3_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Beim Entwerfen einer E-Mail ist es wichtig, den Zweck klar zu definieren und die Nachricht prägnant zu halten. Beginnen Sie mit einer höflichen Anrede, gefolgt von einer kurzen Einführung, die den Kontext der E-Mail erklärt. Der Hauptteil sollte die wesentlichen Informationen oder Anfragen enthalten, klar strukturiert und leicht verständlich. Abschließend sollte die E-Mail mit einem freundlichen Gruß und, falls erforderlich, einem Hinweis auf mögliche nächste Schritte oder eine Antwortmöglichkeit enden. Achten Sie darauf, die E-Mail auf Rechtschreibung und Grammatik zu überprüfen, um Professionalität zu gewährleisten." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174205-041-chapter_2_section_section_3_response.txt b/prompts/20260322-174205-041-chapter_2_section_section_3_response.txt deleted file mode 100644 index 9c3480ee..00000000 --- a/prompts/20260322-174205-041-chapter_2_section_section_3_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Beim Entwerfen einer E-Mail ist es wichtig, den Zweck klar zu definieren und die Nachricht prägnant zu halten. Beginnen Sie mit einer höflichen Anrede, gefolgt von einer kurzen Einführung, die den Kontext der E-Mail erklärt. Der Hauptteil sollte die wesentlichen Informationen oder Anfragen enthalten, klar strukturiert und leicht verständlich. Abschließend sollte die E-Mail mit einem freundlichen Gruß und, falls erforderlich, einem Hinweis auf mögliche nächste Schritte oder eine Antwortmöglichkeit enden. Achten Sie darauf, die E-Mail auf Rechtschreibung und Grammatik zu überprüfen, um Professionalität zu gewährleisten." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174205-042-chapter_2_section_section_4_response.txt b/prompts/20260322-174205-042-chapter_2_section_section_4_response.txt deleted file mode 100644 index 92eb9ecc..00000000 --- a/prompts/20260322-174205-042-chapter_2_section_section_4_response.txt +++ /dev/null @@ -1,17 +0,0 @@ -{ - "elements": [ - { - "type": "table", - "content": { - "headers": ["Termin", "Frist"], - "rows": [ - ["Anmeldeschluss", "15. März 2024"], - ["Zahlungsfrist", "30. März 2024"], - ["Einreichung der Unterlagen", "10. April 2024"], - ["Veranstaltungsbeginn", "20. April 2024"], - ["Stornierungsfrist", "5. April 2024"] - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174205-043-chapter_2_section_section_4_response.txt b/prompts/20260322-174205-043-chapter_2_section_section_4_response.txt deleted file mode 100644 index 8e021872..00000000 --- a/prompts/20260322-174205-043-chapter_2_section_section_4_response.txt +++ /dev/null @@ -1,35 +0,0 @@ -{ - "elements": [ - { - "type": "table", - "content": { - "headers": [ - "Termin", - "Frist" - ], - "rows": [ - [ - "Anmeldeschluss", - "15. März 2024" - ], - [ - "Zahlungsfrist", - "30. März 2024" - ], - [ - "Einreichung der Unterlagen", - "10. April 2024" - ], - [ - "Veranstaltungsbeginn", - "20. April 2024" - ], - [ - "Stornierungsfrist", - "5. April 2024" - ] - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174206-044-chapter_3_section_section_1_response.txt b/prompts/20260322-174206-044-chapter_3_section_section_1_response.txt deleted file mode 100644 index 3f14f4ea..00000000 --- a/prompts/20260322-174206-044-chapter_3_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Die E-Mail fasst die wichtigsten Punkte zusammen und bietet abschließende Gedanken. Sie enthält eine klare Übersicht über die besprochenen Themen und hebt die entscheidenden Informationen hervor. Abschließend wird ein Ausblick auf die nächsten Schritte gegeben, um die besprochenen Themen weiter zu verfolgen und die Kommunikation zu verbessern." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174206-045-chapter_3_section_section_1_response.txt b/prompts/20260322-174206-045-chapter_3_section_section_1_response.txt deleted file mode 100644 index 3f14f4ea..00000000 --- a/prompts/20260322-174206-045-chapter_3_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Die E-Mail fasst die wichtigsten Punkte zusammen und bietet abschließende Gedanken. Sie enthält eine klare Übersicht über die besprochenen Themen und hebt die entscheidenden Informationen hervor. Abschließend wird ein Ausblick auf die nächsten Schritte gegeben, um die besprochenen Themen weiter zu verfolgen und die Kommunikation zu verbessern." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174206-046-document_generation_response.txt b/prompts/20260322-174206-046-document_generation_response.txt deleted file mode 100644 index ae519fa4..00000000 --- a/prompts/20260322-174206-046-document_generation_response.txt +++ /dev/null @@ -1,231 +0,0 @@ -{ - "metadata": { - "title": "Email Entwurf", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "Email Entwurf", - "filename": "email_entwurf.txt", - "outputFormat": "txt", - "language": "de", - "sections": [ - { - "id": "chapter_1_heading", - "content_type": "heading", - "elements": [ - { - "type": "heading", - "content": { - "text": "Einleitung", - "level": 1 - } - } - ] - }, - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Kurze Einführung in den Zweck der E-Mail", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Diese E-Mail dient dazu, den Zweck und die wichtigsten Informationen des vorherigen Dokuments zusammenzufassen. Sie bietet eine kurze Übersicht über die Hauptpunkte und soll als Einführung in die detaillierteren Abschnitte des Dokuments dienen." - } - } - ] - }, - { - "id": "section_2", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Kontext der Nachricht und warum sie wichtig ist", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Die Nachricht ist von entscheidender Bedeutung, da sie wichtige Informationen übermittelt, die für die Empfänger relevant sind. Sie dient dazu, Klarheit zu schaffen, Missverständnisse zu vermeiden und die Empfänger über wesentliche Entwicklungen oder Entscheidungen zu informieren. Eine präzise und gut formulierte Nachricht trägt dazu bei, dass alle Beteiligten auf dem gleichen Stand sind und entsprechend handeln können. Dies fördert die Effizienz und Effektivität in der Kommunikation und im weiteren Handeln." - } - } - ] - }, - { - "id": "section_3", - "content_type": "bullet_list", - "contentPartIds": [], - "generationHint": "Hauptpunkte der Nachricht", - "useAiCall": true, - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Betreff der E-Mail klar und prägnant formulieren.", - "Einleitung mit einer kurzen Begrüßung und Vorstellung.", - "Hauptinhalt der Nachricht in klaren Punkten darstellen.", - "Wichtige Informationen oder Anfragen deutlich hervorheben.", - "Abschluss mit einem Dank und einer höflichen Verabschiedung." - ] - } - } - ] - }, - { - "id": "chapter_2_heading", - "content_type": "heading", - "elements": [ - { - "type": "heading", - "content": { - "text": "Hauptinhalt", - "level": 1 - } - } - ] - }, - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Einleitung des Hauptinhalts mit einer kurzen Zusammenfassung der wichtigsten Punkte.", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "In dieser Einleitung werden die Hauptpunkte des Dokuments zusammengefasst. Der Fokus liegt auf der klaren Darstellung der wichtigsten Informationen, um dem Leser einen schnellen Überblick zu verschaffen. Die folgenden Abschnitte bieten detaillierte Einblicke und ergänzende Details zu den hier genannten Themen." - } - } - ] - }, - { - "id": "section_2", - "content_type": "bullet_list", - "contentPartIds": [], - "generationHint": "Liste der wichtigsten Informationen oder Anweisungen.", - "useAiCall": true, - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Betreff der E-Mail klar und prägnant formulieren.", - "Anrede personalisieren, um den Empfänger direkt anzusprechen.", - "Hauptinhalt der E-Mail in kurzen, prägnanten Sätzen darstellen.", - "Wichtige Informationen oder Anweisungen in Stichpunkten auflisten.", - "Abschließende Grußformel und Kontaktdaten angeben." - ] - } - } - ] - }, - { - "id": "section_3", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Detaillierte Beschreibung eines spezifischen Themas oder einer Anweisung.", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Beim Entwerfen einer E-Mail ist es wichtig, den Zweck klar zu definieren und die Nachricht prägnant zu halten. Beginnen Sie mit einer höflichen Anrede, gefolgt von einer kurzen Einführung, die den Kontext der E-Mail erklärt. Der Hauptteil sollte die wesentlichen Informationen oder Anfragen enthalten, klar strukturiert und leicht verständlich. Abschließend sollte die E-Mail mit einem freundlichen Gruß und, falls erforderlich, einem Hinweis auf mögliche nächste Schritte oder eine Antwortmöglichkeit enden. Achten Sie darauf, die E-Mail auf Rechtschreibung und Grammatik zu überprüfen, um Professionalität zu gewährleisten." - } - } - ] - }, - { - "id": "section_4", - "content_type": "table", - "contentPartIds": [], - "generationHint": "Tabelle mit den wichtigsten Terminen und Fristen.", - "useAiCall": true, - "elements": [ - { - "type": "table", - "content": { - "headers": [ - "Termin", - "Frist" - ], - "rows": [ - [ - "Anmeldeschluss", - "15. März 2024" - ], - [ - "Zahlungsfrist", - "30. März 2024" - ], - [ - "Einreichung der Unterlagen", - "10. April 2024" - ], - [ - "Veranstaltungsbeginn", - "20. April 2024" - ], - [ - "Stornierungsfrist", - "5. April 2024" - ] - ] - } - } - ] - }, - { - "id": "section_5", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Abschluss des Hauptinhalts mit einem Aufruf zum Handeln oder einer abschließenden Bemerkung.", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Vielen Dank, dass Sie sich die Zeit genommen haben, unseren Hauptinhalt zu lesen. Wir hoffen, dass die Informationen für Sie nützlich waren. Zögern Sie nicht, uns bei Fragen oder Anmerkungen zu kontaktieren. Wir freuen uns darauf, von Ihnen zu hören und stehen Ihnen jederzeit zur Verfügung, um Ihnen weiterzuhelfen." - } - } - ] - }, - { - "id": "chapter_3_heading", - "content_type": "heading", - "elements": [ - { - "type": "heading", - "content": { - "text": "Abschluss", - "level": 1 - } - } - ] - }, - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Zusammenfassung der E-Mail-Inhalte und abschließende Gedanken", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Die E-Mail fasst die wichtigsten Punkte zusammen und bietet abschließende Gedanken. Sie enthält eine klare Übersicht über die besprochenen Themen und hebt die entscheidenden Informationen hervor. Abschließend wird ein Ausblick auf die nächsten Schritte gegeben, um die besprochenen Themen weiter zu verfolgen und die Kommunikation zu verbessern." - } - } - ] - } - ], - "metadata": { - "outputStyle": "document" - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174207-047-email_composition_prompt.txt b/prompts/20260322-174207-047-email_composition_prompt.txt deleted file mode 100644 index 5eb02180..00000000 --- a/prompts/20260322-174207-047-email_composition_prompt.txt +++ /dev/null @@ -1,22 +0,0 @@ -Compose an email based on this context: -------- -Compose an email. The upstream AI step did not produce output. -------- - -Recipients: (not specified - this is a draft) -Style: business -Max length: 1000 characters - -Available_Document_References: - - (no documents) - -Based on the context, decide which documents to attach. - -CRITICAL: Use EXACT document references from Available_Document_References above. For individual documents: ALWAYS use docItem:: format (include filename) - -Return JSON: -{ - "subject": "subject line", - "body": "email body (HTML allowed)", - "attachments": ["docItem::"] -} diff --git a/prompts/20260322-174208-048-email_composition_response.txt b/prompts/20260322-174208-048-email_composition_response.txt deleted file mode 100644 index a2833315..00000000 --- a/prompts/20260322-174208-048-email_composition_response.txt +++ /dev/null @@ -1,7 +0,0 @@ -```json -{ - "subject": "Follow-up on Upstream AI Process", - "body": "

Dear Team,

I hope this message finds you well. I am writing to inform you that the upstream AI step did not produce any output as expected. We need to address this issue promptly to ensure the continuity of our workflow.

Please let me know if there are any specific actions you would like me to take or if there are any updates on resolving this matter.

Thank you for your attention to this issue.

Best regards,
Your Name

", - "attachments": [] -} -``` \ No newline at end of file diff --git a/prompts/20260322-174342-049-chapter_structure_generation_prompt.txt b/prompts/20260322-174342-049-chapter_structure_generation_prompt.txt deleted file mode 100644 index 49ba0ee5..00000000 --- a/prompts/20260322-174342-049-chapter_structure_generation_prompt.txt +++ /dev/null @@ -1,119 +0,0 @@ -# TASK: Plan Document Structure (Documents + Chapters) - -This is a STRUCTURE PLANNING task. You define which documents to create and which chapters each document will have. -Chapter CONTENT will be generated in a later step - here you only plan the STRUCTURE and assign content references. -Return EXACTLY ONE complete JSON object. Do not generate multiple JSON objects, alternatives, or variations. Do not use separators like "---" between JSON objects. - -## USER REQUEST (for context) -``` -entwirf eine email mit dem inhalt des files davor -``` - -## AVAILABLE CONTENT PARTS - -(No content parts available) - -## CONTENT ASSIGNMENT RULE - -CRITICAL: Every chapter MUST have contentParts assigned if it relates to documents/images/data from the user request. -If the user request mentions documents/images/data, then EVERY chapter that generates content related to those references MUST assign the relevant ContentParts explicitly. - -Assignment logic: -- If chapter DISPLAYS a document/image → assign "object" format ContentPart with "caption" -- If chapter generates text content ABOUT a document/image/data → assign ContentPart with "instruction": - - Prefer "extracted" format if available (contains analyzed/extracted content) - - If only "object" format is available, use "object" format with "instruction" (to write ABOUT the image/document) -- If chapter's generationHint or purpose relates to a document/image/data mentioned in user request → it MUST have ContentParts assigned -- Multiple chapters might assign the same ContentPart (e.g., one chapter displays image, another writes about it) -- Use ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above -- Empty contentParts are only allowed if chapter generates content WITHOUT referencing any documents/images/data from the user request - -CRITICAL RULE: If the user request mentions BOTH: - a) Documents/images/data (listed in AVAILABLE CONTENT PARTS above), AND - b) Generic content types (article text, main content, body text, etc.) -Then chapters that generate those generic content types MUST assign the relevant ContentParts, because the content should relate to or be based on the provided documents/images/data. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential information only -- AVOID verbose, lengthy, or repetitive text - be concise and direct -- Prioritize FACTS over filler text - no introductions like "In this chapter..." -- Minimize system resources: shorter content = faster processing -- Quality over quantity: precise, meaningful content rather than padding - -## CHAPTER STRUCTURE REQUIREMENTS -- Generate chapters based on USER REQUEST - analyze what structure the user wants -- Create ONLY the minimum chapters needed to cover the user's request - avoid over-structuring -- HARD LIMIT: Maximum 7 chapters per document. If the topic can be covered in fewer, prefer fewer. Combine related topics into single chapters rather than creating many small ones. -- IMPORTANT: Each chapter MUST have ALL these fields: - - id: Unique identifier (e.g., "chapter_1") - - level: Heading level (1, 2, 3, etc.) - - title: Chapter title - - contentParts: Object mapping ContentPart IDs to usage instructions (MUST assign if chapter relates to documents/data from user request) - - generationHint: Description of what content to generate (including formatting/styling requirements) - - sections: Empty array [] (REQUIRED - sections are generated in next phase) -- contentParts: {"partId": {"instruction": "..."} or {"caption": "..."} or both} - Assign ContentParts as required by CONTENT ASSIGNMENT RULE above -- The "instruction" field for each ContentPart MUST contain ALL relevant details from the USER REQUEST that apply to content extraction for this specific chapter. Include all formatting rules, data requirements, constraints, and specifications mentioned in the user request that are relevant for processing this ContentPart in this chapter. -- generationHint: Keep CONCISE but include relevant details from the USER REQUEST. Focus on WHAT to generate, not HOW to phrase it verbosely. -- The number of chapters depends on the user request - create only what is requested. Do NOT create chapters for topics without available data. - -CRITICAL: Only create chapters for CONTENT sections, not for formatting/styling requirements. Formatting/styling requirements to be included in each generationHint if needed. - -## DOCUMENT STRUCTURE - -For each document, determine: -- outputFormat: From USER REQUEST (explicit mention or infer from purpose/content type). Default: "txt". Multiple documents can have different formats. -- language: From USER REQUEST (map to ISO 639-1: de, en, fr, it...). Default: "de". Multiple documents can have different languages. -- chapters: Structure appropriately for the format (e.g., pptx=slides, docx=sections, xlsx=worksheets). Match format capabilities and constraints. - -Required JSON fields: -- metadata: {"title": "...", "language": "..."} -- documents: Array with id, title, filename, outputFormat, language, chapters[] -- chapters: Array with id, level, title, contentParts, generationHint, sections[] - -EXAMPLE STRUCTURE (for reference only - adapt to user request): -{ - "metadata": { - "title": "Document Title", - "language": "de" - }, - "documents": [{ - "id": "doc_1", - "title": "Document Title", - "filename": "document.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Chapter Title", - "contentParts": { - "extracted_part_id": { - "instruction": "Use extracted content with ALL relevant details from user request" - } - }, - "generationHint": "Detailed description including ALL relevant details from user request for this chapter", - "sections": [] - } - ] - }] -} - -CRITICAL INSTRUCTIONS: -- Generate chapters based on USER REQUEST, NOT based on the example above -- The example shows the JSON structure format, NOT the required chapters -- Create only the chapters that match the user's request -- Adapt chapter titles and structure to match the user's specific request -- Determine outputFormat and language for each document by analyzing the USER REQUEST above -- The example shows placeholders "txt" and "de" - YOU MUST REPLACE THESE with actual values determined from the USER REQUEST - -MANDATORY CONTENT ASSIGNMENT CHECK: -For each chapter, verify: -1. Does the user request mention documents/images/data? (e.g., "photo", "image", "document", "data", "based on", "about") -2. Does this chapter's generationHint, title, or purpose relate to those documents/images/data mentioned in step 1? - - Examples: "article about the photo", "text describing the image", "analysis of the document", "content based on the data" - - Even if chapter doesn't explicitly say "about the image", if user request mentions both the image AND this chapter's content type → relate them -3. If YES to both → chapter MUST have contentParts assigned (cannot be empty {}) -4. If ContentPart is "object" format and chapter needs to write ABOUT it → assign with "instruction" field, not just "caption" - -OUTPUT FORMAT: Start with { and end with }. Do NOT use markdown code fences (```json). Do NOT add explanatory text before or after the JSON. Return ONLY the JSON object itself. diff --git a/prompts/20260322-174346-050-chapter_structure_generation_response.txt b/prompts/20260322-174346-050-chapter_structure_generation_response.txt deleted file mode 100644 index 5ae482c7..00000000 --- a/prompts/20260322-174346-050-chapter_structure_generation_response.txt +++ /dev/null @@ -1,41 +0,0 @@ -{ - "metadata": { - "title": "Email Entwurf", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "Email Entwurf", - "filename": "email_entwurf.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Einleitung", - "contentParts": {}, - "generationHint": "Einleitung der E-Mail, die den Zweck und den Kontext der Nachricht kurz beschreibt.", - "sections": [] - }, - { - "id": "chapter_2", - "level": 1, - "title": "Hauptinhalt", - "contentParts": {}, - "generationHint": "Hauptteil der E-Mail, der die wesentlichen Informationen und Details enthält, die kommuniziert werden sollen.", - "sections": [] - }, - { - "id": "chapter_3", - "level": 1, - "title": "Schlussfolgerung", - "contentParts": {}, - "generationHint": "Abschluss der E-Mail mit einer Zusammenfassung oder einem abschließenden Gedanken.", - "sections": [] - } - ] - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174346-051-chapter_structure_generation_final_result.txt b/prompts/20260322-174346-051-chapter_structure_generation_final_result.txt deleted file mode 100644 index 5ae482c7..00000000 --- a/prompts/20260322-174346-051-chapter_structure_generation_final_result.txt +++ /dev/null @@ -1,41 +0,0 @@ -{ - "metadata": { - "title": "Email Entwurf", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "Email Entwurf", - "filename": "email_entwurf.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Einleitung", - "contentParts": {}, - "generationHint": "Einleitung der E-Mail, die den Zweck und den Kontext der Nachricht kurz beschreibt.", - "sections": [] - }, - { - "id": "chapter_2", - "level": 1, - "title": "Hauptinhalt", - "contentParts": {}, - "generationHint": "Hauptteil der E-Mail, der die wesentlichen Informationen und Details enthält, die kommuniziert werden sollen.", - "sections": [] - }, - { - "id": "chapter_3", - "level": 1, - "title": "Schlussfolgerung", - "contentParts": {}, - "generationHint": "Abschluss der E-Mail mit einer Zusammenfassung oder einem abschließenden Gedanken.", - "sections": [] - } - ] - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174346-052-chapter_structure_chapter_1_prompt.txt b/prompts/20260322-174346-052-chapter_structure_chapter_1_prompt.txt deleted file mode 100644 index 6d4a119b..00000000 --- a/prompts/20260322-174346-052-chapter_structure_chapter_1_prompt.txt +++ /dev/null @@ -1,73 +0,0 @@ -TASK: Generate Chapter Sections Structure - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -CHAPTER: Einleitung (Level 1, ID: chapter_1) -GENERATION HINT: Einleitung der E-Mail, die den Zweck und den Kontext der Nachricht kurz beschreibt. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT sections: Focus on essential information only -- AVOID creating too many sections - combine related content where possible -- Each section should serve a clear purpose with meaningful data -- If no relevant data exists for a topic, do NOT create a section for it -- Prefer ONE comprehensive section over multiple sparse sections -- HARD LIMIT: Maximum 5 sections per chapter. Combine related subtopics into single sections to stay within this limit. - -**CRITICAL**: The chapter's generationHint above describes what content this chapter should generate. If the generationHint references documents/images/data, then EACH section that generates content for this chapter MUST assign the relevant ContentParts from AVAILABLE CONTENT PARTS below. - -NOTE: Chapter already has a heading section. Do NOT generate a heading for the chapter title. - -## SECTION INDEPENDENCE -- Each section is independent and self-contained -- One section does NOT have information about another section -- Each section must provide its own context and be understandable alone - -AVAILABLE CONTENT PARTS: - -(No content parts specified for this chapter) - -## CONTENT ASSIGNMENT RULE - CRITICAL -If AVAILABLE CONTENT PARTS are listed above, then EVERY section that generates content related to those ContentParts MUST assign them explicitly. - -**Assignment logic:** -- If section generates text content ABOUT a ContentPart → assign "extracted" format ContentPart with appropriate instruction -- If section DISPLAYS a ContentPart → assign "object" format ContentPart -- If section's generationHint or purpose relates to a ContentPart listed above → it MUST have contentPartIds assigned -- If chapter's generationHint references documents/images/data AND section generates content for that chapter → section MUST assign relevant ContentParts -- Empty contentPartIds [] are only allowed if section generates content WITHOUT referencing any available ContentParts AND WITHOUT relating to chapter's generationHint - -## ACCEPTED CONTENT TYPES FOR THIS FORMAT -The document output format (txt) accepts only the following content types: -table, bullet_list, heading, paragraph, code_block - -**CRITICAL**: Only create sections with content types from this list. Other types will fail. - -useAiCall RULE (simple): -- useAiCall: true → Content needs AI processing (extract, transform, generate, filter, summarize) -- useAiCall: false → Content can be inserted directly without changes (Format is "object" or "reference") - -RETURN JSON: -{ - "sections": [ - { - "id": "section_1", - "content_type": "table", - "contentPartIds": ["extracted_part_id"], - "generationHint": "Description of what to extract or generate", - "useAiCall": true, - "elements": [] - } - ] -} - -**MANDATORY CONTENT ASSIGNMENT CHECK:** -For each section, verify: -1. Are ContentParts listed in AVAILABLE CONTENT PARTS above? -2. Does this section's generationHint or purpose relate to those ContentParts? -3. If YES to both → section MUST have contentPartIds assigned (cannot be empty []) -4. Assign ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above - -IMAGE SECTIONS: -- For image sections, always provide a "caption" field with a descriptive caption for the image. - -Return only valid JSON. Do not include any explanatory text outside the JSON. diff --git a/prompts/20260322-174346-053-chapter_structure_chapter_2_prompt.txt b/prompts/20260322-174346-053-chapter_structure_chapter_2_prompt.txt deleted file mode 100644 index d2123db1..00000000 --- a/prompts/20260322-174346-053-chapter_structure_chapter_2_prompt.txt +++ /dev/null @@ -1,73 +0,0 @@ -TASK: Generate Chapter Sections Structure - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -CHAPTER: Hauptinhalt (Level 1, ID: chapter_2) -GENERATION HINT: Hauptteil der E-Mail, der die wesentlichen Informationen und Details enthält, die kommuniziert werden sollen. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT sections: Focus on essential information only -- AVOID creating too many sections - combine related content where possible -- Each section should serve a clear purpose with meaningful data -- If no relevant data exists for a topic, do NOT create a section for it -- Prefer ONE comprehensive section over multiple sparse sections -- HARD LIMIT: Maximum 5 sections per chapter. Combine related subtopics into single sections to stay within this limit. - -**CRITICAL**: The chapter's generationHint above describes what content this chapter should generate. If the generationHint references documents/images/data, then EACH section that generates content for this chapter MUST assign the relevant ContentParts from AVAILABLE CONTENT PARTS below. - -NOTE: Chapter already has a heading section. Do NOT generate a heading for the chapter title. - -## SECTION INDEPENDENCE -- Each section is independent and self-contained -- One section does NOT have information about another section -- Each section must provide its own context and be understandable alone - -AVAILABLE CONTENT PARTS: - -(No content parts specified for this chapter) - -## CONTENT ASSIGNMENT RULE - CRITICAL -If AVAILABLE CONTENT PARTS are listed above, then EVERY section that generates content related to those ContentParts MUST assign them explicitly. - -**Assignment logic:** -- If section generates text content ABOUT a ContentPart → assign "extracted" format ContentPart with appropriate instruction -- If section DISPLAYS a ContentPart → assign "object" format ContentPart -- If section's generationHint or purpose relates to a ContentPart listed above → it MUST have contentPartIds assigned -- If chapter's generationHint references documents/images/data AND section generates content for that chapter → section MUST assign relevant ContentParts -- Empty contentPartIds [] are only allowed if section generates content WITHOUT referencing any available ContentParts AND WITHOUT relating to chapter's generationHint - -## ACCEPTED CONTENT TYPES FOR THIS FORMAT -The document output format (txt) accepts only the following content types: -table, bullet_list, heading, paragraph, code_block - -**CRITICAL**: Only create sections with content types from this list. Other types will fail. - -useAiCall RULE (simple): -- useAiCall: true → Content needs AI processing (extract, transform, generate, filter, summarize) -- useAiCall: false → Content can be inserted directly without changes (Format is "object" or "reference") - -RETURN JSON: -{ - "sections": [ - { - "id": "section_1", - "content_type": "table", - "contentPartIds": ["extracted_part_id"], - "generationHint": "Description of what to extract or generate", - "useAiCall": true, - "elements": [] - } - ] -} - -**MANDATORY CONTENT ASSIGNMENT CHECK:** -For each section, verify: -1. Are ContentParts listed in AVAILABLE CONTENT PARTS above? -2. Does this section's generationHint or purpose relate to those ContentParts? -3. If YES to both → section MUST have contentPartIds assigned (cannot be empty []) -4. Assign ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above - -IMAGE SECTIONS: -- For image sections, always provide a "caption" field with a descriptive caption for the image. - -Return only valid JSON. Do not include any explanatory text outside the JSON. diff --git a/prompts/20260322-174346-054-chapter_structure_chapter_3_prompt.txt b/prompts/20260322-174346-054-chapter_structure_chapter_3_prompt.txt deleted file mode 100644 index 3ed483c5..00000000 --- a/prompts/20260322-174346-054-chapter_structure_chapter_3_prompt.txt +++ /dev/null @@ -1,73 +0,0 @@ -TASK: Generate Chapter Sections Structure - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -CHAPTER: Schlussfolgerung (Level 1, ID: chapter_3) -GENERATION HINT: Abschluss der E-Mail mit einer Zusammenfassung oder einem abschließenden Gedanken. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT sections: Focus on essential information only -- AVOID creating too many sections - combine related content where possible -- Each section should serve a clear purpose with meaningful data -- If no relevant data exists for a topic, do NOT create a section for it -- Prefer ONE comprehensive section over multiple sparse sections -- HARD LIMIT: Maximum 5 sections per chapter. Combine related subtopics into single sections to stay within this limit. - -**CRITICAL**: The chapter's generationHint above describes what content this chapter should generate. If the generationHint references documents/images/data, then EACH section that generates content for this chapter MUST assign the relevant ContentParts from AVAILABLE CONTENT PARTS below. - -NOTE: Chapter already has a heading section. Do NOT generate a heading for the chapter title. - -## SECTION INDEPENDENCE -- Each section is independent and self-contained -- One section does NOT have information about another section -- Each section must provide its own context and be understandable alone - -AVAILABLE CONTENT PARTS: - -(No content parts specified for this chapter) - -## CONTENT ASSIGNMENT RULE - CRITICAL -If AVAILABLE CONTENT PARTS are listed above, then EVERY section that generates content related to those ContentParts MUST assign them explicitly. - -**Assignment logic:** -- If section generates text content ABOUT a ContentPart → assign "extracted" format ContentPart with appropriate instruction -- If section DISPLAYS a ContentPart → assign "object" format ContentPart -- If section's generationHint or purpose relates to a ContentPart listed above → it MUST have contentPartIds assigned -- If chapter's generationHint references documents/images/data AND section generates content for that chapter → section MUST assign relevant ContentParts -- Empty contentPartIds [] are only allowed if section generates content WITHOUT referencing any available ContentParts AND WITHOUT relating to chapter's generationHint - -## ACCEPTED CONTENT TYPES FOR THIS FORMAT -The document output format (txt) accepts only the following content types: -table, bullet_list, heading, paragraph, code_block - -**CRITICAL**: Only create sections with content types from this list. Other types will fail. - -useAiCall RULE (simple): -- useAiCall: true → Content needs AI processing (extract, transform, generate, filter, summarize) -- useAiCall: false → Content can be inserted directly without changes (Format is "object" or "reference") - -RETURN JSON: -{ - "sections": [ - { - "id": "section_1", - "content_type": "table", - "contentPartIds": ["extracted_part_id"], - "generationHint": "Description of what to extract or generate", - "useAiCall": true, - "elements": [] - } - ] -} - -**MANDATORY CONTENT ASSIGNMENT CHECK:** -For each section, verify: -1. Are ContentParts listed in AVAILABLE CONTENT PARTS above? -2. Does this section's generationHint or purpose relate to those ContentParts? -3. If YES to both → section MUST have contentPartIds assigned (cannot be empty []) -4. Assign ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above - -IMAGE SECTIONS: -- For image sections, always provide a "caption" field with a descriptive caption for the image. - -Return only valid JSON. Do not include any explanatory text outside the JSON. diff --git a/prompts/20260322-174348-055-chapter_structure_chapter_3_response.txt b/prompts/20260322-174348-055-chapter_structure_chapter_3_response.txt deleted file mode 100644 index 4bb34827..00000000 --- a/prompts/20260322-174348-055-chapter_structure_chapter_3_response.txt +++ /dev/null @@ -1,19 +0,0 @@ -```json -{ - "sections": [ - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Abschluss der E-Mail mit einer Zusammenfassung oder einem abschließenden Gedanken", - "useAiCall": true, - "elements": [ - { - "type": "text", - "content": "In der Schlussfolgerung fassen wir die wichtigsten Punkte zusammen, die in der E-Mail behandelt wurden. Es ist entscheidend, den Empfänger mit einem klaren und prägnanten Abschluss zu hinterlassen, der die Hauptbotschaft verstärkt und eventuell nächste Schritte oder Erwartungen klärt. Ein abschließender Gedanke könnte auch eine Einladung zur weiteren Diskussion oder Zusammenarbeit sein, um die Beziehung zu stärken und zukünftige Kommunikation zu fördern." - } - ] - } - ] -} -``` \ No newline at end of file diff --git a/prompts/20260322-174350-056-chapter_structure_chapter_1_response.txt b/prompts/20260322-174350-056-chapter_structure_chapter_1_response.txt deleted file mode 100644 index 2f87c0b9..00000000 --- a/prompts/20260322-174350-056-chapter_structure_chapter_1_response.txt +++ /dev/null @@ -1,38 +0,0 @@ -```json -{ - "sections": [ - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Einleitung zur E-Mail, die den Zweck und den Kontext der Nachricht beschreibt", - "useAiCall": true, - "elements": [ - "Diese E-Mail dient dazu, den Empfänger über die neuesten Entwicklungen in unserem Projekt zu informieren. Wir möchten Ihnen einen Überblick über die aktuellen Fortschritte geben und die nächsten Schritte erläutern. Ihr Feedback ist uns wichtig, um sicherzustellen, dass wir auf dem richtigen Weg sind." - ] - }, - { - "id": "section_2", - "content_type": "bullet_list", - "contentPartIds": [], - "generationHint": "Hauptziele der E-Mail zusammenfassen", - "useAiCall": true, - "elements": [ - "Information über den aktuellen Projektstatus", - "Darstellung der nächsten Schritte", - "Einladung zur Rückmeldung und Diskussion" - ] - }, - { - "id": "section_3", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Kontext der Nachricht im Rahmen des größeren Projekts", - "useAiCall": true, - "elements": [ - "Das Projekt, an dem wir arbeiten, ist ein wesentlicher Bestandteil unserer Unternehmensstrategie für das kommende Jahr. Es zielt darauf ab, unsere Marktposition zu stärken und neue Geschäftsmöglichkeiten zu erschließen." - ] - } - ] -} -``` \ No newline at end of file diff --git a/prompts/20260322-174353-057-chapter_structure_chapter_2_response.txt b/prompts/20260322-174353-057-chapter_structure_chapter_2_response.txt deleted file mode 100644 index 4de01a2d..00000000 --- a/prompts/20260322-174353-057-chapter_structure_chapter_2_response.txt +++ /dev/null @@ -1,87 +0,0 @@ -```json -{ - "sections": [ - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Einleitung und Überblick über die wesentlichen Informationen der E-Mail", - "useAiCall": true, - "elements": [ - { - "type": "text", - "content": "In diesem Abschnitt wird der Hauptinhalt der E-Mail vorgestellt. Hier werden die wichtigsten Informationen und Details zusammengefasst, die der Empfänger wissen muss. Der Fokus liegt darauf, die Kernaussagen klar und prägnant zu vermitteln." - } - ] - }, - { - "id": "section_2", - "content_type": "bullet_list", - "contentPartIds": [], - "generationHint": "Auflistung der Hauptpunkte oder Themen, die in der E-Mail behandelt werden", - "useAiCall": true, - "elements": [ - { - "type": "item", - "content": "Ziel der E-Mail" - }, - { - "type": "item", - "content": "Wichtige Termine oder Fristen" - }, - { - "type": "item", - "content": "Erforderliche Maßnahmen oder Aktionen" - } - ] - }, - { - "id": "section_3", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Detaillierte Informationen zu einem spezifischen Thema oder Punkt", - "useAiCall": true, - "elements": [ - { - "type": "text", - "content": "Dieser Abschnitt bietet eine detaillierte Erklärung zu einem bestimmten Thema, das in der E-Mail behandelt wird. Hier werden alle relevanten Details und Hintergrundinformationen bereitgestellt, um ein umfassendes Verständnis zu gewährleisten." - } - ] - }, - { - "id": "section_4", - "content_type": "table", - "contentPartIds": [], - "generationHint": "Tabellarische Darstellung von Daten oder Informationen, die in der E-Mail enthalten sind", - "useAiCall": true, - "elements": [ - { - "type": "row", - "content": ["Thema", "Beschreibung"] - }, - { - "type": "row", - "content": ["Projektstatus", "Aktueller Stand des Projekts und nächste Schritte"] - }, - { - "type": "row", - "content": ["Budget", "Übersicht über die aktuellen Ausgaben und geplante Budgets"] - } - ] - }, - { - "id": "section_5", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Zusammenfassung und abschließende Bemerkungen", - "useAiCall": true, - "elements": [ - { - "type": "text", - "content": "Zum Abschluss der E-Mail werden die wichtigsten Punkte noch einmal zusammengefasst. Es wird darauf hingewiesen, welche nächsten Schritte erforderlich sind und welche Fristen eingehalten werden müssen." - } - ] - } - ] -} -``` \ No newline at end of file diff --git a/prompts/20260322-174353-058-chapter_1_section_section_1_prompt.txt b/prompts/20260322-174353-058-chapter_1_section_section_1_prompt.txt deleted file mode 100644 index 38559b8f..00000000 --- a/prompts/20260322-174353-058-chapter_1_section_section_1_prompt.txt +++ /dev/null @@ -1,56 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_1 -- Content Type: paragraph -- Generation Hint: Einleitung zur E-Mail, die den Zweck und den Kontext der Nachricht beschreibt -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Following sections: -- section_2 (bullet_list): -- section_3 (paragraph): - diff --git a/prompts/20260322-174353-059-chapter_1_section_section_2_prompt.txt b/prompts/20260322-174353-059-chapter_1_section_section_2_prompt.txt deleted file mode 100644 index ed415f71..00000000 --- a/prompts/20260322-174353-059-chapter_1_section_section_2_prompt.txt +++ /dev/null @@ -1,59 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_2 -- Content Type: bullet_list -- Generation Hint: Hauptziele der E-Mail zusammenfassen -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (bullet_list). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "bullet_list", - "content": {{"items": ["Item 1", "Item 2", "Item 3"]}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): - -Following sections: -- section_3 (paragraph): -- section_1 (paragraph): - diff --git a/prompts/20260322-174353-060-chapter_1_section_section_3_prompt.txt b/prompts/20260322-174353-060-chapter_1_section_section_3_prompt.txt deleted file mode 100644 index 98971f56..00000000 --- a/prompts/20260322-174353-060-chapter_1_section_section_3_prompt.txt +++ /dev/null @@ -1,60 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_3 -- Content Type: paragraph -- Generation Hint: Kontext der Nachricht im Rahmen des größeren Projekts -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): -- section_2 (bullet_list): - -Following sections: -- section_1 (paragraph): -- section_2 (bullet_list): - diff --git a/prompts/20260322-174353-061-chapter_2_section_section_1_prompt.txt b/prompts/20260322-174353-061-chapter_2_section_section_1_prompt.txt deleted file mode 100644 index 216a759e..00000000 --- a/prompts/20260322-174353-061-chapter_2_section_section_1_prompt.txt +++ /dev/null @@ -1,56 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_1 -- Content Type: paragraph -- Generation Hint: Einleitung und Überblick über die wesentlichen Informationen der E-Mail -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Following sections: -- section_2 (bullet_list): -- section_3 (paragraph): - diff --git a/prompts/20260322-174353-062-chapter_2_section_section_2_prompt.txt b/prompts/20260322-174353-062-chapter_2_section_section_2_prompt.txt deleted file mode 100644 index 53a15d93..00000000 --- a/prompts/20260322-174353-062-chapter_2_section_section_2_prompt.txt +++ /dev/null @@ -1,59 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_2 -- Content Type: bullet_list -- Generation Hint: Auflistung der Hauptpunkte oder Themen, die in der E-Mail behandelt werden -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (bullet_list). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "bullet_list", - "content": {{"items": ["Item 1", "Item 2", "Item 3"]}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): - -Following sections: -- section_3 (paragraph): -- section_1 (paragraph): - diff --git a/prompts/20260322-174355-063-chapter_1_section_section_2_response.txt b/prompts/20260322-174355-063-chapter_1_section_section_2_response.txt deleted file mode 100644 index 3e698c4f..00000000 --- a/prompts/20260322-174355-063-chapter_1_section_section_2_response.txt +++ /dev/null @@ -1,14 +0,0 @@ -{ - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Wichtige Informationen klar und prägnant kommunizieren", - "Empfänger über spezifische Aktionen oder Entscheidungen informieren", - "Erwartungen oder nächste Schritte deutlich machen" - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174355-064-chapter_1_section_section_2_response.txt b/prompts/20260322-174355-064-chapter_1_section_section_2_response.txt deleted file mode 100644 index 3e698c4f..00000000 --- a/prompts/20260322-174355-064-chapter_1_section_section_2_response.txt +++ /dev/null @@ -1,14 +0,0 @@ -{ - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Wichtige Informationen klar und prägnant kommunizieren", - "Empfänger über spezifische Aktionen oder Entscheidungen informieren", - "Erwartungen oder nächste Schritte deutlich machen" - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174355-065-chapter_2_section_section_3_prompt.txt b/prompts/20260322-174355-065-chapter_2_section_section_3_prompt.txt deleted file mode 100644 index 557be6c0..00000000 --- a/prompts/20260322-174355-065-chapter_2_section_section_3_prompt.txt +++ /dev/null @@ -1,60 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_3 -- Content Type: paragraph -- Generation Hint: Detaillierte Informationen zu einem spezifischen Thema oder Punkt -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): -- section_2 (bullet_list): - -Following sections: -- section_1 (paragraph): -- section_2 (bullet_list): - diff --git a/prompts/20260322-174355-066-chapter_2_section_section_2_response.txt b/prompts/20260322-174355-066-chapter_2_section_section_2_response.txt deleted file mode 100644 index 0005b108..00000000 --- a/prompts/20260322-174355-066-chapter_2_section_section_2_response.txt +++ /dev/null @@ -1,16 +0,0 @@ -{ - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Begrüßung und Vorstellung des Absenders", - "Zweck der E-Mail und Hauptthemen", - "Wichtige Informationen oder Updates", - "Anfragen oder benötigte Aktionen vom Empfänger", - "Abschluss und Dankesworte" - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174355-067-chapter_2_section_section_2_response.txt b/prompts/20260322-174355-067-chapter_2_section_section_2_response.txt deleted file mode 100644 index 0005b108..00000000 --- a/prompts/20260322-174355-067-chapter_2_section_section_2_response.txt +++ /dev/null @@ -1,16 +0,0 @@ -{ - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Begrüßung und Vorstellung des Absenders", - "Zweck der E-Mail und Hauptthemen", - "Wichtige Informationen oder Updates", - "Anfragen oder benötigte Aktionen vom Empfänger", - "Abschluss und Dankesworte" - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174355-068-chapter_1_section_section_1_response.txt b/prompts/20260322-174355-068-chapter_1_section_section_1_response.txt deleted file mode 100644 index 356ec670..00000000 --- a/prompts/20260322-174355-068-chapter_1_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Diese E-Mail dient dazu, den Zweck und den Kontext der Nachricht klar darzustellen. Sie enthält wichtige Informationen, die für das Verständnis des Themas notwendig sind. Bitte lesen Sie die folgenden Abschnitte sorgfältig, um alle relevanten Details zu erfassen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174355-069-chapter_1_section_section_1_response.txt b/prompts/20260322-174355-069-chapter_1_section_section_1_response.txt deleted file mode 100644 index 356ec670..00000000 --- a/prompts/20260322-174355-069-chapter_1_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Diese E-Mail dient dazu, den Zweck und den Kontext der Nachricht klar darzustellen. Sie enthält wichtige Informationen, die für das Verständnis des Themas notwendig sind. Bitte lesen Sie die folgenden Abschnitte sorgfältig, um alle relevanten Details zu erfassen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174355-070-chapter_2_section_section_4_prompt.txt b/prompts/20260322-174355-070-chapter_2_section_section_4_prompt.txt deleted file mode 100644 index 258de074..00000000 --- a/prompts/20260322-174355-070-chapter_2_section_section_4_prompt.txt +++ /dev/null @@ -1,60 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_4 -- Content Type: table -- Generation Hint: Tabellarische Darstellung von Daten oder Informationen, die in der E-Mail enthalten sind -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (table). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "table", - "content": {{"headers": ["Column1", "Column2"], "rows": [["Value1", "Value2"], ["Value3", "Value4"]]}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_2 (bullet_list): -- section_3 (paragraph): - -Following sections: -- section_2 (bullet_list): -- section_3 (paragraph): - diff --git a/prompts/20260322-174355-071-chapter_2_section_section_5_prompt.txt b/prompts/20260322-174355-071-chapter_2_section_section_5_prompt.txt deleted file mode 100644 index 31878a30..00000000 --- a/prompts/20260322-174355-071-chapter_2_section_section_5_prompt.txt +++ /dev/null @@ -1,60 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_5 -- Content Type: paragraph -- Generation Hint: Zusammenfassung und abschließende Bemerkungen -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_3 (paragraph): -- section_1 (paragraph): - -Following sections: -- section_3 (paragraph): -- section_4 (table): - diff --git a/prompts/20260322-174355-072-chapter_2_section_section_1_response.txt b/prompts/20260322-174355-072-chapter_2_section_section_1_response.txt deleted file mode 100644 index b277c58a..00000000 --- a/prompts/20260322-174355-072-chapter_2_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Diese E-Mail bietet einen Überblick über die wichtigsten Informationen und Themen, die im vorherigen Dokument behandelt wurden. Sie fasst die wesentlichen Punkte zusammen, um den Empfängern einen schnellen und effektiven Einblick zu ermöglichen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174355-073-chapter_2_section_section_1_response.txt b/prompts/20260322-174355-073-chapter_2_section_section_1_response.txt deleted file mode 100644 index b277c58a..00000000 --- a/prompts/20260322-174355-073-chapter_2_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Diese E-Mail bietet einen Überblick über die wichtigsten Informationen und Themen, die im vorherigen Dokument behandelt wurden. Sie fasst die wesentlichen Punkte zusammen, um den Empfängern einen schnellen und effektiven Einblick zu ermöglichen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174355-074-chapter_1_section_section_3_response.txt b/prompts/20260322-174355-074-chapter_1_section_section_3_response.txt deleted file mode 100644 index 4a1bd2db..00000000 --- a/prompts/20260322-174355-074-chapter_1_section_section_3_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Im Rahmen des Projekts ist es entscheidend, die Kommunikation klar und präzise zu halten. Die Nachricht sollte den aktuellen Fortschritt, die nächsten Schritte und eventuelle Herausforderungen adressieren. Es ist wichtig, alle relevanten Stakeholder auf dem Laufenden zu halten und sicherzustellen, dass alle notwendigen Ressourcen und Informationen bereitgestellt werden, um die Projektziele effizient zu erreichen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174355-075-chapter_1_section_section_3_response.txt b/prompts/20260322-174355-075-chapter_1_section_section_3_response.txt deleted file mode 100644 index 4a1bd2db..00000000 --- a/prompts/20260322-174355-075-chapter_1_section_section_3_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Im Rahmen des Projekts ist es entscheidend, die Kommunikation klar und präzise zu halten. Die Nachricht sollte den aktuellen Fortschritt, die nächsten Schritte und eventuelle Herausforderungen adressieren. Es ist wichtig, alle relevanten Stakeholder auf dem Laufenden zu halten und sicherzustellen, dass alle notwendigen Ressourcen und Informationen bereitgestellt werden, um die Projektziele effizient zu erreichen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174355-076-chapter_3_section_section_1_prompt.txt b/prompts/20260322-174355-076-chapter_3_section_section_1_prompt.txt deleted file mode 100644 index ead49013..00000000 --- a/prompts/20260322-174355-076-chapter_3_section_section_1_prompt.txt +++ /dev/null @@ -1,56 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_1 -- Content Type: paragraph -- Generation Hint: Abschluss der E-Mail mit einer Zusammenfassung oder einem abschließenden Gedanken -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Following sections: -- section_2 (bullet_list): -- section_3 (paragraph): - diff --git a/prompts/20260322-174356-077-chapter_3_section_section_1_response.txt b/prompts/20260322-174356-077-chapter_3_section_section_1_response.txt deleted file mode 100644 index 0892e9ff..00000000 --- a/prompts/20260322-174356-077-chapter_3_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Abschließend möchte ich mich für Ihre Aufmerksamkeit und Unterstützung bedanken. Ich freue mich auf Ihre Rückmeldung und hoffe auf eine positive Zusammenarbeit. Bei weiteren Fragen stehe ich Ihnen gerne zur Verfügung." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174356-078-chapter_3_section_section_1_response.txt b/prompts/20260322-174356-078-chapter_3_section_section_1_response.txt deleted file mode 100644 index 0892e9ff..00000000 --- a/prompts/20260322-174356-078-chapter_3_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Abschließend möchte ich mich für Ihre Aufmerksamkeit und Unterstützung bedanken. Ich freue mich auf Ihre Rückmeldung und hoffe auf eine positive Zusammenarbeit. Bei weiteren Fragen stehe ich Ihnen gerne zur Verfügung." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174357-079-chapter_2_section_section_3_response.txt b/prompts/20260322-174357-079-chapter_2_section_section_3_response.txt deleted file mode 100644 index 06e958a7..00000000 --- a/prompts/20260322-174357-079-chapter_2_section_section_3_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Beim Entwerfen einer E-Mail ist es wichtig, den Zweck klar zu definieren und die Nachricht präzise zu formulieren. Beginnen Sie mit einer höflichen Anrede, gefolgt von einer kurzen Einführung in das Thema. Der Hauptteil sollte die wesentlichen Informationen enthalten, die der Empfänger benötigt, um die Nachricht zu verstehen und darauf zu reagieren. Abschließend sollte die E-Mail mit einem klaren Aufruf zum Handeln oder einer Zusammenfassung der nächsten Schritte enden. Höfliche Grüße und eine Signatur runden die E-Mail ab." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174357-080-chapter_2_section_section_3_response.txt b/prompts/20260322-174357-080-chapter_2_section_section_3_response.txt deleted file mode 100644 index 06e958a7..00000000 --- a/prompts/20260322-174357-080-chapter_2_section_section_3_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Beim Entwerfen einer E-Mail ist es wichtig, den Zweck klar zu definieren und die Nachricht präzise zu formulieren. Beginnen Sie mit einer höflichen Anrede, gefolgt von einer kurzen Einführung in das Thema. Der Hauptteil sollte die wesentlichen Informationen enthalten, die der Empfänger benötigt, um die Nachricht zu verstehen und darauf zu reagieren. Abschließend sollte die E-Mail mit einem klaren Aufruf zum Handeln oder einer Zusammenfassung der nächsten Schritte enden. Höfliche Grüße und eine Signatur runden die E-Mail ab." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174357-081-chapter_2_section_section_4_response.txt b/prompts/20260322-174357-081-chapter_2_section_section_4_response.txt deleted file mode 100644 index a1284740..00000000 --- a/prompts/20260322-174357-081-chapter_2_section_section_4_response.txt +++ /dev/null @@ -1,17 +0,0 @@ -{ - "elements": [ - { - "type": "table", - "content": { - "headers": ["Betreff", "Inhalt"], - "rows": [ - ["Anrede", "Sehr geehrte Damen und Herren,"], - ["Einleitung", "Ich hoffe, diese Nachricht trifft Sie wohl."], - ["Hauptteil", "Im Anhang finden Sie die erforderlichen Informationen."], - ["Schluss", "Vielen Dank für Ihre Aufmerksamkeit."], - ["Grüße", "Mit freundlichen Grüßen, [Ihr Name]"] - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174357-082-chapter_2_section_section_4_response.txt b/prompts/20260322-174357-082-chapter_2_section_section_4_response.txt deleted file mode 100644 index ebbd9745..00000000 --- a/prompts/20260322-174357-082-chapter_2_section_section_4_response.txt +++ /dev/null @@ -1,35 +0,0 @@ -{ - "elements": [ - { - "type": "table", - "content": { - "headers": [ - "Betreff", - "Inhalt" - ], - "rows": [ - [ - "Anrede", - "Sehr geehrte Damen und Herren," - ], - [ - "Einleitung", - "Ich hoffe, diese Nachricht trifft Sie wohl." - ], - [ - "Hauptteil", - "Im Anhang finden Sie die erforderlichen Informationen." - ], - [ - "Schluss", - "Vielen Dank für Ihre Aufmerksamkeit." - ], - [ - "Grüße", - "Mit freundlichen Grüßen, [Ihr Name]" - ] - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174357-083-chapter_2_section_section_5_response.txt b/prompts/20260322-174357-083-chapter_2_section_section_5_response.txt deleted file mode 100644 index 9c885660..00000000 --- a/prompts/20260322-174357-083-chapter_2_section_section_5_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Zusammenfassend lässt sich sagen, dass die besprochenen Themen eine klare Richtung für zukünftige Maßnahmen vorgeben. Die Analyse der Daten zeigt deutliche Trends, die berücksichtigt werden müssen, um effektive Strategien zu entwickeln. Abschließend ist es wichtig, die gewonnenen Erkenntnisse in konkrete Handlungen umzusetzen, um die gewünschten Ergebnisse zu erzielen. Eine kontinuierliche Überprüfung und Anpassung der Strategien wird empfohlen, um auf Veränderungen im Umfeld flexibel reagieren zu können." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174357-084-chapter_2_section_section_5_response.txt b/prompts/20260322-174357-084-chapter_2_section_section_5_response.txt deleted file mode 100644 index 9c885660..00000000 --- a/prompts/20260322-174357-084-chapter_2_section_section_5_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Zusammenfassend lässt sich sagen, dass die besprochenen Themen eine klare Richtung für zukünftige Maßnahmen vorgeben. Die Analyse der Daten zeigt deutliche Trends, die berücksichtigt werden müssen, um effektive Strategien zu entwickeln. Abschließend ist es wichtig, die gewonnenen Erkenntnisse in konkrete Handlungen umzusetzen, um die gewünschten Ergebnisse zu erzielen. Eine kontinuierliche Überprüfung und Anpassung der Strategien wird empfohlen, um auf Veränderungen im Umfeld flexibel reagieren zu können." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174357-085-document_generation_response.txt b/prompts/20260322-174357-085-document_generation_response.txt deleted file mode 100644 index 3938c43e..00000000 --- a/prompts/20260322-174357-085-document_generation_response.txt +++ /dev/null @@ -1,229 +0,0 @@ -{ - "metadata": { - "title": "Email Entwurf", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "Email Entwurf", - "filename": "email_entwurf.txt", - "outputFormat": "txt", - "language": "de", - "sections": [ - { - "id": "chapter_1_heading", - "content_type": "heading", - "elements": [ - { - "type": "heading", - "content": { - "text": "Einleitung", - "level": 1 - } - } - ] - }, - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Einleitung zur E-Mail, die den Zweck und den Kontext der Nachricht beschreibt", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Diese E-Mail dient dazu, den Zweck und den Kontext der Nachricht klar darzustellen. Sie enthält wichtige Informationen, die für das Verständnis des Themas notwendig sind. Bitte lesen Sie die folgenden Abschnitte sorgfältig, um alle relevanten Details zu erfassen." - } - } - ] - }, - { - "id": "section_2", - "content_type": "bullet_list", - "contentPartIds": [], - "generationHint": "Hauptziele der E-Mail zusammenfassen", - "useAiCall": true, - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Wichtige Informationen klar und prägnant kommunizieren", - "Empfänger über spezifische Aktionen oder Entscheidungen informieren", - "Erwartungen oder nächste Schritte deutlich machen" - ] - } - } - ] - }, - { - "id": "section_3", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Kontext der Nachricht im Rahmen des größeren Projekts", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Im Rahmen des Projekts ist es entscheidend, die Kommunikation klar und präzise zu halten. Die Nachricht sollte den aktuellen Fortschritt, die nächsten Schritte und eventuelle Herausforderungen adressieren. Es ist wichtig, alle relevanten Stakeholder auf dem Laufenden zu halten und sicherzustellen, dass alle notwendigen Ressourcen und Informationen bereitgestellt werden, um die Projektziele effizient zu erreichen." - } - } - ] - }, - { - "id": "chapter_2_heading", - "content_type": "heading", - "elements": [ - { - "type": "heading", - "content": { - "text": "Hauptinhalt", - "level": 1 - } - } - ] - }, - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Einleitung und Überblick über die wesentlichen Informationen der E-Mail", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Diese E-Mail bietet einen Überblick über die wichtigsten Informationen und Themen, die im vorherigen Dokument behandelt wurden. Sie fasst die wesentlichen Punkte zusammen, um den Empfängern einen schnellen und effektiven Einblick zu ermöglichen." - } - } - ] - }, - { - "id": "section_2", - "content_type": "bullet_list", - "contentPartIds": [], - "generationHint": "Auflistung der Hauptpunkte oder Themen, die in der E-Mail behandelt werden", - "useAiCall": true, - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Begrüßung und Vorstellung des Absenders", - "Zweck der E-Mail und Hauptthemen", - "Wichtige Informationen oder Updates", - "Anfragen oder benötigte Aktionen vom Empfänger", - "Abschluss und Dankesworte" - ] - } - } - ] - }, - { - "id": "section_3", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Detaillierte Informationen zu einem spezifischen Thema oder Punkt", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Beim Entwerfen einer E-Mail ist es wichtig, den Zweck klar zu definieren und die Nachricht präzise zu formulieren. Beginnen Sie mit einer höflichen Anrede, gefolgt von einer kurzen Einführung in das Thema. Der Hauptteil sollte die wesentlichen Informationen enthalten, die der Empfänger benötigt, um die Nachricht zu verstehen und darauf zu reagieren. Abschließend sollte die E-Mail mit einem klaren Aufruf zum Handeln oder einer Zusammenfassung der nächsten Schritte enden. Höfliche Grüße und eine Signatur runden die E-Mail ab." - } - } - ] - }, - { - "id": "section_4", - "content_type": "table", - "contentPartIds": [], - "generationHint": "Tabellarische Darstellung von Daten oder Informationen, die in der E-Mail enthalten sind", - "useAiCall": true, - "elements": [ - { - "type": "table", - "content": { - "headers": [ - "Betreff", - "Inhalt" - ], - "rows": [ - [ - "Anrede", - "Sehr geehrte Damen und Herren," - ], - [ - "Einleitung", - "Ich hoffe, diese Nachricht trifft Sie wohl." - ], - [ - "Hauptteil", - "Im Anhang finden Sie die erforderlichen Informationen." - ], - [ - "Schluss", - "Vielen Dank für Ihre Aufmerksamkeit." - ], - [ - "Grüße", - "Mit freundlichen Grüßen, [Ihr Name]" - ] - ] - } - } - ] - }, - { - "id": "section_5", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Zusammenfassung und abschließende Bemerkungen", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Zusammenfassend lässt sich sagen, dass die besprochenen Themen eine klare Richtung für zukünftige Maßnahmen vorgeben. Die Analyse der Daten zeigt deutliche Trends, die berücksichtigt werden müssen, um effektive Strategien zu entwickeln. Abschließend ist es wichtig, die gewonnenen Erkenntnisse in konkrete Handlungen umzusetzen, um die gewünschten Ergebnisse zu erzielen. Eine kontinuierliche Überprüfung und Anpassung der Strategien wird empfohlen, um auf Veränderungen im Umfeld flexibel reagieren zu können." - } - } - ] - }, - { - "id": "chapter_3_heading", - "content_type": "heading", - "elements": [ - { - "type": "heading", - "content": { - "text": "Schlussfolgerung", - "level": 1 - } - } - ] - }, - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Abschluss der E-Mail mit einer Zusammenfassung oder einem abschließenden Gedanken", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Abschließend möchte ich mich für Ihre Aufmerksamkeit und Unterstützung bedanken. Ich freue mich auf Ihre Rückmeldung und hoffe auf eine positive Zusammenarbeit. Bei weiteren Fragen stehe ich Ihnen gerne zur Verfügung." - } - } - ] - } - ], - "metadata": { - "outputStyle": "document" - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174452-086-chapter_structure_generation_prompt.txt b/prompts/20260322-174452-086-chapter_structure_generation_prompt.txt deleted file mode 100644 index 49ba0ee5..00000000 --- a/prompts/20260322-174452-086-chapter_structure_generation_prompt.txt +++ /dev/null @@ -1,119 +0,0 @@ -# TASK: Plan Document Structure (Documents + Chapters) - -This is a STRUCTURE PLANNING task. You define which documents to create and which chapters each document will have. -Chapter CONTENT will be generated in a later step - here you only plan the STRUCTURE and assign content references. -Return EXACTLY ONE complete JSON object. Do not generate multiple JSON objects, alternatives, or variations. Do not use separators like "---" between JSON objects. - -## USER REQUEST (for context) -``` -entwirf eine email mit dem inhalt des files davor -``` - -## AVAILABLE CONTENT PARTS - -(No content parts available) - -## CONTENT ASSIGNMENT RULE - -CRITICAL: Every chapter MUST have contentParts assigned if it relates to documents/images/data from the user request. -If the user request mentions documents/images/data, then EVERY chapter that generates content related to those references MUST assign the relevant ContentParts explicitly. - -Assignment logic: -- If chapter DISPLAYS a document/image → assign "object" format ContentPart with "caption" -- If chapter generates text content ABOUT a document/image/data → assign ContentPart with "instruction": - - Prefer "extracted" format if available (contains analyzed/extracted content) - - If only "object" format is available, use "object" format with "instruction" (to write ABOUT the image/document) -- If chapter's generationHint or purpose relates to a document/image/data mentioned in user request → it MUST have ContentParts assigned -- Multiple chapters might assign the same ContentPart (e.g., one chapter displays image, another writes about it) -- Use ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above -- Empty contentParts are only allowed if chapter generates content WITHOUT referencing any documents/images/data from the user request - -CRITICAL RULE: If the user request mentions BOTH: - a) Documents/images/data (listed in AVAILABLE CONTENT PARTS above), AND - b) Generic content types (article text, main content, body text, etc.) -Then chapters that generate those generic content types MUST assign the relevant ContentParts, because the content should relate to or be based on the provided documents/images/data. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential information only -- AVOID verbose, lengthy, or repetitive text - be concise and direct -- Prioritize FACTS over filler text - no introductions like "In this chapter..." -- Minimize system resources: shorter content = faster processing -- Quality over quantity: precise, meaningful content rather than padding - -## CHAPTER STRUCTURE REQUIREMENTS -- Generate chapters based on USER REQUEST - analyze what structure the user wants -- Create ONLY the minimum chapters needed to cover the user's request - avoid over-structuring -- HARD LIMIT: Maximum 7 chapters per document. If the topic can be covered in fewer, prefer fewer. Combine related topics into single chapters rather than creating many small ones. -- IMPORTANT: Each chapter MUST have ALL these fields: - - id: Unique identifier (e.g., "chapter_1") - - level: Heading level (1, 2, 3, etc.) - - title: Chapter title - - contentParts: Object mapping ContentPart IDs to usage instructions (MUST assign if chapter relates to documents/data from user request) - - generationHint: Description of what content to generate (including formatting/styling requirements) - - sections: Empty array [] (REQUIRED - sections are generated in next phase) -- contentParts: {"partId": {"instruction": "..."} or {"caption": "..."} or both} - Assign ContentParts as required by CONTENT ASSIGNMENT RULE above -- The "instruction" field for each ContentPart MUST contain ALL relevant details from the USER REQUEST that apply to content extraction for this specific chapter. Include all formatting rules, data requirements, constraints, and specifications mentioned in the user request that are relevant for processing this ContentPart in this chapter. -- generationHint: Keep CONCISE but include relevant details from the USER REQUEST. Focus on WHAT to generate, not HOW to phrase it verbosely. -- The number of chapters depends on the user request - create only what is requested. Do NOT create chapters for topics without available data. - -CRITICAL: Only create chapters for CONTENT sections, not for formatting/styling requirements. Formatting/styling requirements to be included in each generationHint if needed. - -## DOCUMENT STRUCTURE - -For each document, determine: -- outputFormat: From USER REQUEST (explicit mention or infer from purpose/content type). Default: "txt". Multiple documents can have different formats. -- language: From USER REQUEST (map to ISO 639-1: de, en, fr, it...). Default: "de". Multiple documents can have different languages. -- chapters: Structure appropriately for the format (e.g., pptx=slides, docx=sections, xlsx=worksheets). Match format capabilities and constraints. - -Required JSON fields: -- metadata: {"title": "...", "language": "..."} -- documents: Array with id, title, filename, outputFormat, language, chapters[] -- chapters: Array with id, level, title, contentParts, generationHint, sections[] - -EXAMPLE STRUCTURE (for reference only - adapt to user request): -{ - "metadata": { - "title": "Document Title", - "language": "de" - }, - "documents": [{ - "id": "doc_1", - "title": "Document Title", - "filename": "document.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Chapter Title", - "contentParts": { - "extracted_part_id": { - "instruction": "Use extracted content with ALL relevant details from user request" - } - }, - "generationHint": "Detailed description including ALL relevant details from user request for this chapter", - "sections": [] - } - ] - }] -} - -CRITICAL INSTRUCTIONS: -- Generate chapters based on USER REQUEST, NOT based on the example above -- The example shows the JSON structure format, NOT the required chapters -- Create only the chapters that match the user's request -- Adapt chapter titles and structure to match the user's specific request -- Determine outputFormat and language for each document by analyzing the USER REQUEST above -- The example shows placeholders "txt" and "de" - YOU MUST REPLACE THESE with actual values determined from the USER REQUEST - -MANDATORY CONTENT ASSIGNMENT CHECK: -For each chapter, verify: -1. Does the user request mention documents/images/data? (e.g., "photo", "image", "document", "data", "based on", "about") -2. Does this chapter's generationHint, title, or purpose relate to those documents/images/data mentioned in step 1? - - Examples: "article about the photo", "text describing the image", "analysis of the document", "content based on the data" - - Even if chapter doesn't explicitly say "about the image", if user request mentions both the image AND this chapter's content type → relate them -3. If YES to both → chapter MUST have contentParts assigned (cannot be empty {}) -4. If ContentPart is "object" format and chapter needs to write ABOUT it → assign with "instruction" field, not just "caption" - -OUTPUT FORMAT: Start with { and end with }. Do NOT use markdown code fences (```json). Do NOT add explanatory text before or after the JSON. Return ONLY the JSON object itself. diff --git a/prompts/20260322-174456-087-chapter_structure_generation_response.txt b/prompts/20260322-174456-087-chapter_structure_generation_response.txt deleted file mode 100644 index 7a3071e3..00000000 --- a/prompts/20260322-174456-087-chapter_structure_generation_response.txt +++ /dev/null @@ -1,41 +0,0 @@ -{ - "metadata": { - "title": "Email Entwurf", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "Email Entwurf", - "filename": "email_entwurf.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Einleitung", - "contentParts": {}, - "generationHint": "Einleitung der E-Mail mit einer Begrüßung und Vorstellung des Themas.", - "sections": [] - }, - { - "id": "chapter_2", - "level": 1, - "title": "Hauptteil", - "contentParts": {}, - "generationHint": "Hauptinhalt der E-Mail, der die wesentlichen Informationen und Anliegen beschreibt.", - "sections": [] - }, - { - "id": "chapter_3", - "level": 1, - "title": "Schluss", - "contentParts": {}, - "generationHint": "Abschluss der E-Mail mit einer Zusammenfassung und einem freundlichen Gruß.", - "sections": [] - } - ] - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174456-088-chapter_structure_generation_final_result.txt b/prompts/20260322-174456-088-chapter_structure_generation_final_result.txt deleted file mode 100644 index 7a3071e3..00000000 --- a/prompts/20260322-174456-088-chapter_structure_generation_final_result.txt +++ /dev/null @@ -1,41 +0,0 @@ -{ - "metadata": { - "title": "Email Entwurf", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "Email Entwurf", - "filename": "email_entwurf.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Einleitung", - "contentParts": {}, - "generationHint": "Einleitung der E-Mail mit einer Begrüßung und Vorstellung des Themas.", - "sections": [] - }, - { - "id": "chapter_2", - "level": 1, - "title": "Hauptteil", - "contentParts": {}, - "generationHint": "Hauptinhalt der E-Mail, der die wesentlichen Informationen und Anliegen beschreibt.", - "sections": [] - }, - { - "id": "chapter_3", - "level": 1, - "title": "Schluss", - "contentParts": {}, - "generationHint": "Abschluss der E-Mail mit einer Zusammenfassung und einem freundlichen Gruß.", - "sections": [] - } - ] - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174456-089-chapter_structure_chapter_1_prompt.txt b/prompts/20260322-174456-089-chapter_structure_chapter_1_prompt.txt deleted file mode 100644 index f3725e73..00000000 --- a/prompts/20260322-174456-089-chapter_structure_chapter_1_prompt.txt +++ /dev/null @@ -1,73 +0,0 @@ -TASK: Generate Chapter Sections Structure - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -CHAPTER: Einleitung (Level 1, ID: chapter_1) -GENERATION HINT: Einleitung der E-Mail mit einer Begrüßung und Vorstellung des Themas. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT sections: Focus on essential information only -- AVOID creating too many sections - combine related content where possible -- Each section should serve a clear purpose with meaningful data -- If no relevant data exists for a topic, do NOT create a section for it -- Prefer ONE comprehensive section over multiple sparse sections -- HARD LIMIT: Maximum 5 sections per chapter. Combine related subtopics into single sections to stay within this limit. - -**CRITICAL**: The chapter's generationHint above describes what content this chapter should generate. If the generationHint references documents/images/data, then EACH section that generates content for this chapter MUST assign the relevant ContentParts from AVAILABLE CONTENT PARTS below. - -NOTE: Chapter already has a heading section. Do NOT generate a heading for the chapter title. - -## SECTION INDEPENDENCE -- Each section is independent and self-contained -- One section does NOT have information about another section -- Each section must provide its own context and be understandable alone - -AVAILABLE CONTENT PARTS: - -(No content parts specified for this chapter) - -## CONTENT ASSIGNMENT RULE - CRITICAL -If AVAILABLE CONTENT PARTS are listed above, then EVERY section that generates content related to those ContentParts MUST assign them explicitly. - -**Assignment logic:** -- If section generates text content ABOUT a ContentPart → assign "extracted" format ContentPart with appropriate instruction -- If section DISPLAYS a ContentPart → assign "object" format ContentPart -- If section's generationHint or purpose relates to a ContentPart listed above → it MUST have contentPartIds assigned -- If chapter's generationHint references documents/images/data AND section generates content for that chapter → section MUST assign relevant ContentParts -- Empty contentPartIds [] are only allowed if section generates content WITHOUT referencing any available ContentParts AND WITHOUT relating to chapter's generationHint - -## ACCEPTED CONTENT TYPES FOR THIS FORMAT -The document output format (txt) accepts only the following content types: -table, bullet_list, heading, paragraph, code_block - -**CRITICAL**: Only create sections with content types from this list. Other types will fail. - -useAiCall RULE (simple): -- useAiCall: true → Content needs AI processing (extract, transform, generate, filter, summarize) -- useAiCall: false → Content can be inserted directly without changes (Format is "object" or "reference") - -RETURN JSON: -{ - "sections": [ - { - "id": "section_1", - "content_type": "table", - "contentPartIds": ["extracted_part_id"], - "generationHint": "Description of what to extract or generate", - "useAiCall": true, - "elements": [] - } - ] -} - -**MANDATORY CONTENT ASSIGNMENT CHECK:** -For each section, verify: -1. Are ContentParts listed in AVAILABLE CONTENT PARTS above? -2. Does this section's generationHint or purpose relate to those ContentParts? -3. If YES to both → section MUST have contentPartIds assigned (cannot be empty []) -4. Assign ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above - -IMAGE SECTIONS: -- For image sections, always provide a "caption" field with a descriptive caption for the image. - -Return only valid JSON. Do not include any explanatory text outside the JSON. diff --git a/prompts/20260322-174456-090-chapter_structure_chapter_2_prompt.txt b/prompts/20260322-174456-090-chapter_structure_chapter_2_prompt.txt deleted file mode 100644 index b9e70526..00000000 --- a/prompts/20260322-174456-090-chapter_structure_chapter_2_prompt.txt +++ /dev/null @@ -1,73 +0,0 @@ -TASK: Generate Chapter Sections Structure - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -CHAPTER: Hauptteil (Level 1, ID: chapter_2) -GENERATION HINT: Hauptinhalt der E-Mail, der die wesentlichen Informationen und Anliegen beschreibt. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT sections: Focus on essential information only -- AVOID creating too many sections - combine related content where possible -- Each section should serve a clear purpose with meaningful data -- If no relevant data exists for a topic, do NOT create a section for it -- Prefer ONE comprehensive section over multiple sparse sections -- HARD LIMIT: Maximum 5 sections per chapter. Combine related subtopics into single sections to stay within this limit. - -**CRITICAL**: The chapter's generationHint above describes what content this chapter should generate. If the generationHint references documents/images/data, then EACH section that generates content for this chapter MUST assign the relevant ContentParts from AVAILABLE CONTENT PARTS below. - -NOTE: Chapter already has a heading section. Do NOT generate a heading for the chapter title. - -## SECTION INDEPENDENCE -- Each section is independent and self-contained -- One section does NOT have information about another section -- Each section must provide its own context and be understandable alone - -AVAILABLE CONTENT PARTS: - -(No content parts specified for this chapter) - -## CONTENT ASSIGNMENT RULE - CRITICAL -If AVAILABLE CONTENT PARTS are listed above, then EVERY section that generates content related to those ContentParts MUST assign them explicitly. - -**Assignment logic:** -- If section generates text content ABOUT a ContentPart → assign "extracted" format ContentPart with appropriate instruction -- If section DISPLAYS a ContentPart → assign "object" format ContentPart -- If section's generationHint or purpose relates to a ContentPart listed above → it MUST have contentPartIds assigned -- If chapter's generationHint references documents/images/data AND section generates content for that chapter → section MUST assign relevant ContentParts -- Empty contentPartIds [] are only allowed if section generates content WITHOUT referencing any available ContentParts AND WITHOUT relating to chapter's generationHint - -## ACCEPTED CONTENT TYPES FOR THIS FORMAT -The document output format (txt) accepts only the following content types: -table, bullet_list, heading, paragraph, code_block - -**CRITICAL**: Only create sections with content types from this list. Other types will fail. - -useAiCall RULE (simple): -- useAiCall: true → Content needs AI processing (extract, transform, generate, filter, summarize) -- useAiCall: false → Content can be inserted directly without changes (Format is "object" or "reference") - -RETURN JSON: -{ - "sections": [ - { - "id": "section_1", - "content_type": "table", - "contentPartIds": ["extracted_part_id"], - "generationHint": "Description of what to extract or generate", - "useAiCall": true, - "elements": [] - } - ] -} - -**MANDATORY CONTENT ASSIGNMENT CHECK:** -For each section, verify: -1. Are ContentParts listed in AVAILABLE CONTENT PARTS above? -2. Does this section's generationHint or purpose relate to those ContentParts? -3. If YES to both → section MUST have contentPartIds assigned (cannot be empty []) -4. Assign ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above - -IMAGE SECTIONS: -- For image sections, always provide a "caption" field with a descriptive caption for the image. - -Return only valid JSON. Do not include any explanatory text outside the JSON. diff --git a/prompts/20260322-174457-091-chapter_structure_chapter_3_prompt.txt b/prompts/20260322-174457-091-chapter_structure_chapter_3_prompt.txt deleted file mode 100644 index 66689f56..00000000 --- a/prompts/20260322-174457-091-chapter_structure_chapter_3_prompt.txt +++ /dev/null @@ -1,73 +0,0 @@ -TASK: Generate Chapter Sections Structure - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -CHAPTER: Schluss (Level 1, ID: chapter_3) -GENERATION HINT: Abschluss der E-Mail mit einer Zusammenfassung und einem freundlichen Gruß. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT sections: Focus on essential information only -- AVOID creating too many sections - combine related content where possible -- Each section should serve a clear purpose with meaningful data -- If no relevant data exists for a topic, do NOT create a section for it -- Prefer ONE comprehensive section over multiple sparse sections -- HARD LIMIT: Maximum 5 sections per chapter. Combine related subtopics into single sections to stay within this limit. - -**CRITICAL**: The chapter's generationHint above describes what content this chapter should generate. If the generationHint references documents/images/data, then EACH section that generates content for this chapter MUST assign the relevant ContentParts from AVAILABLE CONTENT PARTS below. - -NOTE: Chapter already has a heading section. Do NOT generate a heading for the chapter title. - -## SECTION INDEPENDENCE -- Each section is independent and self-contained -- One section does NOT have information about another section -- Each section must provide its own context and be understandable alone - -AVAILABLE CONTENT PARTS: - -(No content parts specified for this chapter) - -## CONTENT ASSIGNMENT RULE - CRITICAL -If AVAILABLE CONTENT PARTS are listed above, then EVERY section that generates content related to those ContentParts MUST assign them explicitly. - -**Assignment logic:** -- If section generates text content ABOUT a ContentPart → assign "extracted" format ContentPart with appropriate instruction -- If section DISPLAYS a ContentPart → assign "object" format ContentPart -- If section's generationHint or purpose relates to a ContentPart listed above → it MUST have contentPartIds assigned -- If chapter's generationHint references documents/images/data AND section generates content for that chapter → section MUST assign relevant ContentParts -- Empty contentPartIds [] are only allowed if section generates content WITHOUT referencing any available ContentParts AND WITHOUT relating to chapter's generationHint - -## ACCEPTED CONTENT TYPES FOR THIS FORMAT -The document output format (txt) accepts only the following content types: -table, bullet_list, heading, paragraph, code_block - -**CRITICAL**: Only create sections with content types from this list. Other types will fail. - -useAiCall RULE (simple): -- useAiCall: true → Content needs AI processing (extract, transform, generate, filter, summarize) -- useAiCall: false → Content can be inserted directly without changes (Format is "object" or "reference") - -RETURN JSON: -{ - "sections": [ - { - "id": "section_1", - "content_type": "table", - "contentPartIds": ["extracted_part_id"], - "generationHint": "Description of what to extract or generate", - "useAiCall": true, - "elements": [] - } - ] -} - -**MANDATORY CONTENT ASSIGNMENT CHECK:** -For each section, verify: -1. Are ContentParts listed in AVAILABLE CONTENT PARTS above? -2. Does this section's generationHint or purpose relate to those ContentParts? -3. If YES to both → section MUST have contentPartIds assigned (cannot be empty []) -4. Assign ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above - -IMAGE SECTIONS: -- For image sections, always provide a "caption" field with a descriptive caption for the image. - -Return only valid JSON. Do not include any explanatory text outside the JSON. diff --git a/prompts/20260322-174458-092-chapter_structure_chapter_1_response.txt b/prompts/20260322-174458-092-chapter_structure_chapter_1_response.txt deleted file mode 100644 index c4990c8d..00000000 --- a/prompts/20260322-174458-092-chapter_structure_chapter_1_response.txt +++ /dev/null @@ -1,16 +0,0 @@ -```json -{ - "sections": [ - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Einleitung mit Begrüßung und Vorstellung des Themas", - "useAiCall": true, - "elements": [ - "Herzlich willkommen zu unserer Einführung in das Thema. In dieser Einleitung möchten wir Ihnen einen Überblick über die wichtigsten Aspekte und Ziele geben, die wir in den folgenden Kapiteln behandeln werden. Unser Ziel ist es, Ihnen ein umfassendes Verständnis für die Thematik zu vermitteln und Sie auf die kommenden Inhalte vorzubereiten." - ] - } - ] -} -``` \ No newline at end of file diff --git a/prompts/20260322-174459-093-chapter_structure_chapter_3_response.txt b/prompts/20260322-174459-093-chapter_structure_chapter_3_response.txt deleted file mode 100644 index 5116e5d6..00000000 --- a/prompts/20260322-174459-093-chapter_structure_chapter_3_response.txt +++ /dev/null @@ -1,26 +0,0 @@ -```json -{ - "sections": [ - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Abschluss der E-Mail mit einer Zusammenfassung der wichtigsten Punkte.", - "useAiCall": true, - "elements": [ - "Zum Abschluss möchten wir die wichtigsten Punkte unserer E-Mail zusammenfassen. Wir haben die aktuellen Entwicklungen und zukünftigen Schritte besprochen, um sicherzustellen, dass alle Beteiligten gut informiert sind. Sollten Sie weitere Fragen haben, zögern Sie bitte nicht, uns zu kontaktieren." - ] - }, - { - "id": "section_2", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Freundlicher Gruß zum Abschluss der E-Mail.", - "useAiCall": true, - "elements": [ - "Wir danken Ihnen für Ihre Aufmerksamkeit und freuen uns auf eine erfolgreiche Zusammenarbeit. Mit freundlichen Grüßen, [Ihr Name]" - ] - } - ] -} -``` \ No newline at end of file diff --git a/prompts/20260322-174502-094-chapter_structure_chapter_2_response.txt b/prompts/20260322-174502-094-chapter_structure_chapter_2_response.txt deleted file mode 100644 index 9727e4de..00000000 --- a/prompts/20260322-174502-094-chapter_structure_chapter_2_response.txt +++ /dev/null @@ -1,49 +0,0 @@ -```json -{ - "sections": [ - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Einleitung und Kontext des Hauptinhalts der E-Mail", - "useAiCall": false, - "elements": [ - "In diesem Abschnitt wird der Hauptinhalt der E-Mail vorgestellt, der die wesentlichen Informationen und Anliegen beschreibt. Ziel ist es, dem Empfänger einen klaren Überblick über das Thema und die wichtigsten Punkte zu geben." - ] - }, - { - "id": "section_2", - "content_type": "bullet_list", - "contentPartIds": [], - "generationHint": "Auflistung der Hauptpunkte oder Anliegen der E-Mail", - "useAiCall": false, - "elements": [ - "Hauptanliegen des Absenders", - "Wichtige Informationen oder Daten, die mitgeteilt werden müssen", - "Fragen oder Anliegen, die geklärt werden sollen", - "Erwartungen oder gewünschte Handlungen des Empfängers" - ] - }, - { - "id": "section_3", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Detaillierte Beschreibung eines spezifischen Anliegens oder Themas", - "useAiCall": false, - "elements": [ - "Ein spezifisches Anliegen oder Thema wird hier detailliert beschrieben, um dem Empfänger ein tieferes Verständnis zu ermöglichen. Dies kann beispielsweise eine Erklärung eines Problems oder die Darstellung einer Lösung sein." - ] - }, - { - "id": "section_4", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Zusammenfassung und Schlussfolgerung des Hauptinhalts", - "useAiCall": false, - "elements": [ - "In der Zusammenfassung werden die wichtigsten Punkte des Hauptinhalts noch einmal hervorgehoben. Der Abschnitt endet mit einer Schlussfolgerung oder einem Aufruf zum Handeln, um den Empfänger zu einer Reaktion zu bewegen." - ] - } - ] -} -``` \ No newline at end of file diff --git a/prompts/20260322-174502-095-chapter_1_section_section_1_prompt.txt b/prompts/20260322-174502-095-chapter_1_section_section_1_prompt.txt deleted file mode 100644 index 9fdf1977..00000000 --- a/prompts/20260322-174502-095-chapter_1_section_section_1_prompt.txt +++ /dev/null @@ -1,56 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_1 -- Content Type: paragraph -- Generation Hint: Einleitung mit Begrüßung und Vorstellung des Themas -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Following sections: -- section_1 (paragraph): -- section_2 (bullet_list): - diff --git a/prompts/20260322-174502-096-chapter_2_section_section_1_prompt.txt b/prompts/20260322-174502-096-chapter_2_section_section_1_prompt.txt deleted file mode 100644 index e2b3b34a..00000000 --- a/prompts/20260322-174502-096-chapter_2_section_section_1_prompt.txt +++ /dev/null @@ -1,56 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_1 -- Content Type: paragraph -- Generation Hint: Einleitung und Kontext des Hauptinhalts der E-Mail -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Following sections: -- section_1 (paragraph): -- section_2 (bullet_list): - diff --git a/prompts/20260322-174502-097-chapter_2_section_section_2_prompt.txt b/prompts/20260322-174502-097-chapter_2_section_section_2_prompt.txt deleted file mode 100644 index 2cbf1865..00000000 --- a/prompts/20260322-174502-097-chapter_2_section_section_2_prompt.txt +++ /dev/null @@ -1,59 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_2 -- Content Type: bullet_list -- Generation Hint: Auflistung der Hauptpunkte oder Anliegen der E-Mail -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (bullet_list). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "bullet_list", - "content": {{"items": ["Item 1", "Item 2", "Item 3"]}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): - -Following sections: -- section_2 (bullet_list): -- section_3 (paragraph): - diff --git a/prompts/20260322-174502-098-chapter_2_section_section_3_prompt.txt b/prompts/20260322-174502-098-chapter_2_section_section_3_prompt.txt deleted file mode 100644 index 7bca8623..00000000 --- a/prompts/20260322-174502-098-chapter_2_section_section_3_prompt.txt +++ /dev/null @@ -1,60 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_3 -- Content Type: paragraph -- Generation Hint: Detaillierte Beschreibung eines spezifischen Anliegens oder Themas -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): -- section_1 (paragraph): - -Following sections: -- section_3 (paragraph): -- section_4 (paragraph): - diff --git a/prompts/20260322-174502-099-chapter_2_section_section_4_prompt.txt b/prompts/20260322-174502-099-chapter_2_section_section_4_prompt.txt deleted file mode 100644 index 4905c185..00000000 --- a/prompts/20260322-174502-099-chapter_2_section_section_4_prompt.txt +++ /dev/null @@ -1,60 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_4 -- Content Type: paragraph -- Generation Hint: Zusammenfassung und Schlussfolgerung des Hauptinhalts -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): -- section_2 (bullet_list): - -Following sections: -- section_4 (paragraph): -- section_1 (paragraph): - diff --git a/prompts/20260322-174504-100-chapter_2_section_section_2_response.txt b/prompts/20260322-174504-100-chapter_2_section_section_2_response.txt deleted file mode 100644 index 15190d01..00000000 --- a/prompts/20260322-174504-100-chapter_2_section_section_2_response.txt +++ /dev/null @@ -1,16 +0,0 @@ -{ - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Anfrage zur Klärung eines offenen Punktes", - "Vorschlag für einen gemeinsamen Termin", - "Bitte um Rückmeldung bis Ende der Woche", - "Erinnerung an die bevorstehende Frist", - "Bereitstellung zusätzlicher Informationen auf Anfrage" - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174504-101-chapter_2_section_section_2_response.txt b/prompts/20260322-174504-101-chapter_2_section_section_2_response.txt deleted file mode 100644 index 15190d01..00000000 --- a/prompts/20260322-174504-101-chapter_2_section_section_2_response.txt +++ /dev/null @@ -1,16 +0,0 @@ -{ - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Anfrage zur Klärung eines offenen Punktes", - "Vorschlag für einen gemeinsamen Termin", - "Bitte um Rückmeldung bis Ende der Woche", - "Erinnerung an die bevorstehende Frist", - "Bereitstellung zusätzlicher Informationen auf Anfrage" - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174504-102-chapter_3_section_section_1_prompt.txt b/prompts/20260322-174504-102-chapter_3_section_section_1_prompt.txt deleted file mode 100644 index 5eb4fd67..00000000 --- a/prompts/20260322-174504-102-chapter_3_section_section_1_prompt.txt +++ /dev/null @@ -1,56 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_1 -- Content Type: paragraph -- Generation Hint: Abschluss der E-Mail mit einer Zusammenfassung der wichtigsten Punkte. -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Following sections: -- section_1 (paragraph): -- section_2 (bullet_list): - diff --git a/prompts/20260322-174504-103-chapter_2_section_section_1_response.txt b/prompts/20260322-174504-103-chapter_2_section_section_1_response.txt deleted file mode 100644 index 112376dd..00000000 --- a/prompts/20260322-174504-103-chapter_2_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Sehr geehrte Damen und Herren, wir möchten Ihnen einige wichtige Informationen mitteilen, die für Ihre zukünftigen Entscheidungen von Bedeutung sein könnten. Bitte nehmen Sie sich einen Moment Zeit, um die folgenden Details zu lesen, die Ihnen helfen werden, die nächsten Schritte zu planen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174504-104-chapter_2_section_section_1_response.txt b/prompts/20260322-174504-104-chapter_2_section_section_1_response.txt deleted file mode 100644 index 112376dd..00000000 --- a/prompts/20260322-174504-104-chapter_2_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Sehr geehrte Damen und Herren, wir möchten Ihnen einige wichtige Informationen mitteilen, die für Ihre zukünftigen Entscheidungen von Bedeutung sein könnten. Bitte nehmen Sie sich einen Moment Zeit, um die folgenden Details zu lesen, die Ihnen helfen werden, die nächsten Schritte zu planen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174504-105-chapter_3_section_section_2_prompt.txt b/prompts/20260322-174504-105-chapter_3_section_section_2_prompt.txt deleted file mode 100644 index 52954501..00000000 --- a/prompts/20260322-174504-105-chapter_3_section_section_2_prompt.txt +++ /dev/null @@ -1,59 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_2 -- Content Type: paragraph -- Generation Hint: Freundlicher Gruß zum Abschluss der E-Mail. -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): - -Following sections: -- section_2 (bullet_list): -- section_3 (paragraph): - diff --git a/prompts/20260322-174504-106-chapter_2_section_section_3_response.txt b/prompts/20260322-174504-106-chapter_2_section_section_3_response.txt deleted file mode 100644 index 1c48f504..00000000 --- a/prompts/20260322-174504-106-chapter_2_section_section_3_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "In der heutigen digitalen Welt ist die Sicherheit von Informationen von größter Bedeutung. Unternehmen müssen sicherstellen, dass ihre Daten vor unbefugtem Zugriff geschützt sind. Dies erfordert den Einsatz fortschrittlicher Verschlüsselungstechnologien und strenger Zugriffsrichtlinien. Darüber hinaus ist es wichtig, regelmäßige Sicherheitsüberprüfungen durchzuführen und Mitarbeiter im Umgang mit sensiblen Daten zu schulen. Nur durch eine umfassende Sicherheitsstrategie können Unternehmen ihre Daten effektiv schützen und das Vertrauen ihrer Kunden bewahren." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174504-107-chapter_2_section_section_3_response.txt b/prompts/20260322-174504-107-chapter_2_section_section_3_response.txt deleted file mode 100644 index 1c48f504..00000000 --- a/prompts/20260322-174504-107-chapter_2_section_section_3_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "In der heutigen digitalen Welt ist die Sicherheit von Informationen von größter Bedeutung. Unternehmen müssen sicherstellen, dass ihre Daten vor unbefugtem Zugriff geschützt sind. Dies erfordert den Einsatz fortschrittlicher Verschlüsselungstechnologien und strenger Zugriffsrichtlinien. Darüber hinaus ist es wichtig, regelmäßige Sicherheitsüberprüfungen durchzuführen und Mitarbeiter im Umgang mit sensiblen Daten zu schulen. Nur durch eine umfassende Sicherheitsstrategie können Unternehmen ihre Daten effektiv schützen und das Vertrauen ihrer Kunden bewahren." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174504-108-chapter_1_section_section_1_response.txt b/prompts/20260322-174504-108-chapter_1_section_section_1_response.txt deleted file mode 100644 index eaadfde6..00000000 --- a/prompts/20260322-174504-108-chapter_1_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Herzlich willkommen zu unserer Einführung in das Thema. Wir freuen uns, Ihnen einen Überblick über die wesentlichen Aspekte zu geben, die in den folgenden Abschnitten behandelt werden. Unser Ziel ist es, Ihnen ein klares Verständnis zu vermitteln und die wichtigsten Punkte prägnant darzustellen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174504-109-chapter_1_section_section_1_response.txt b/prompts/20260322-174504-109-chapter_1_section_section_1_response.txt deleted file mode 100644 index eaadfde6..00000000 --- a/prompts/20260322-174504-109-chapter_1_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Herzlich willkommen zu unserer Einführung in das Thema. Wir freuen uns, Ihnen einen Überblick über die wesentlichen Aspekte zu geben, die in den folgenden Abschnitten behandelt werden. Unser Ziel ist es, Ihnen ein klares Verständnis zu vermitteln und die wichtigsten Punkte prägnant darzustellen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174504-110-chapter_2_section_section_4_response.txt b/prompts/20260322-174504-110-chapter_2_section_section_4_response.txt deleted file mode 100644 index 276e4f05..00000000 --- a/prompts/20260322-174504-110-chapter_2_section_section_4_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Zusammenfassend lässt sich sagen, dass die im vorherigen Dokument behandelten Themen klar und prägnant dargestellt wurden. Die Hauptpunkte umfassen die wesentlichen Aspekte des Themas und bieten eine fundierte Grundlage für weitere Diskussionen oder Entscheidungen. Die Schlussfolgerungen basieren auf den analysierten Daten und bieten wertvolle Einblicke, die für zukünftige Entwicklungen von Bedeutung sein können. Insgesamt wird ein umfassendes Verständnis des behandelten Themas vermittelt, das sowohl für Fachleute als auch für Interessierte von Nutzen ist." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174504-111-chapter_2_section_section_4_response.txt b/prompts/20260322-174504-111-chapter_2_section_section_4_response.txt deleted file mode 100644 index 276e4f05..00000000 --- a/prompts/20260322-174504-111-chapter_2_section_section_4_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Zusammenfassend lässt sich sagen, dass die im vorherigen Dokument behandelten Themen klar und prägnant dargestellt wurden. Die Hauptpunkte umfassen die wesentlichen Aspekte des Themas und bieten eine fundierte Grundlage für weitere Diskussionen oder Entscheidungen. Die Schlussfolgerungen basieren auf den analysierten Daten und bieten wertvolle Einblicke, die für zukünftige Entwicklungen von Bedeutung sein können. Insgesamt wird ein umfassendes Verständnis des behandelten Themas vermittelt, das sowohl für Fachleute als auch für Interessierte von Nutzen ist." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174505-112-chapter_3_section_section_2_response.txt b/prompts/20260322-174505-112-chapter_3_section_section_2_response.txt deleted file mode 100644 index b4b5eaf6..00000000 --- a/prompts/20260322-174505-112-chapter_3_section_section_2_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Mit freundlichen Grüßen,\n\n[Ihr Name]" - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174505-113-chapter_3_section_section_2_response.txt b/prompts/20260322-174505-113-chapter_3_section_section_2_response.txt deleted file mode 100644 index b4b5eaf6..00000000 --- a/prompts/20260322-174505-113-chapter_3_section_section_2_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Mit freundlichen Grüßen,\n\n[Ihr Name]" - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174506-114-chapter_3_section_section_1_response.txt b/prompts/20260322-174506-114-chapter_3_section_section_1_response.txt deleted file mode 100644 index 7b22b291..00000000 --- a/prompts/20260322-174506-114-chapter_3_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Zusammenfassend lässt sich sagen, dass die besprochenen Punkte von großer Bedeutung für den Erfolg unseres Projekts sind. Wir haben die wichtigsten Meilensteine und Verantwortlichkeiten festgelegt, um sicherzustellen, dass alle Teammitglieder auf dem gleichen Stand sind. Bitte überprüfen Sie die angehängten Dokumente für weitere Details und zögern Sie nicht, bei Fragen oder Anmerkungen Kontakt aufzunehmen. Vielen Dank für Ihre Aufmerksamkeit und Unterstützung." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174506-115-chapter_3_section_section_1_response.txt b/prompts/20260322-174506-115-chapter_3_section_section_1_response.txt deleted file mode 100644 index 7b22b291..00000000 --- a/prompts/20260322-174506-115-chapter_3_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Zusammenfassend lässt sich sagen, dass die besprochenen Punkte von großer Bedeutung für den Erfolg unseres Projekts sind. Wir haben die wichtigsten Meilensteine und Verantwortlichkeiten festgelegt, um sicherzustellen, dass alle Teammitglieder auf dem gleichen Stand sind. Bitte überprüfen Sie die angehängten Dokumente für weitere Details und zögern Sie nicht, bei Fragen oder Anmerkungen Kontakt aufzunehmen. Vielen Dank für Ihre Aufmerksamkeit und Unterstützung." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-174506-116-document_generation_response.txt b/prompts/20260322-174506-116-document_generation_response.txt deleted file mode 100644 index 21f1d9b6..00000000 --- a/prompts/20260322-174506-116-document_generation_response.txt +++ /dev/null @@ -1,170 +0,0 @@ -{ - "metadata": { - "title": "Email Entwurf", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "Email Entwurf", - "filename": "email_entwurf.txt", - "outputFormat": "txt", - "language": "de", - "sections": [ - { - "id": "chapter_1_heading", - "content_type": "heading", - "elements": [ - { - "type": "heading", - "content": { - "text": "Einleitung", - "level": 1 - } - } - ] - }, - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Einleitung mit Begrüßung und Vorstellung des Themas", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Herzlich willkommen zu unserer Einführung in das Thema. Wir freuen uns, Ihnen einen Überblick über die wesentlichen Aspekte zu geben, die in den folgenden Abschnitten behandelt werden. Unser Ziel ist es, Ihnen ein klares Verständnis zu vermitteln und die wichtigsten Punkte prägnant darzustellen." - } - } - ] - }, - { - "id": "chapter_2_heading", - "content_type": "heading", - "elements": [ - { - "type": "heading", - "content": { - "text": "Hauptteil", - "level": 1 - } - } - ] - }, - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Einleitung und Kontext des Hauptinhalts der E-Mail", - "useAiCall": false, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Sehr geehrte Damen und Herren, wir möchten Ihnen einige wichtige Informationen mitteilen, die für Ihre zukünftigen Entscheidungen von Bedeutung sein könnten. Bitte nehmen Sie sich einen Moment Zeit, um die folgenden Details zu lesen, die Ihnen helfen werden, die nächsten Schritte zu planen." - } - } - ] - }, - { - "id": "section_2", - "content_type": "bullet_list", - "contentPartIds": [], - "generationHint": "Auflistung der Hauptpunkte oder Anliegen der E-Mail", - "useAiCall": false, - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Anfrage zur Klärung eines offenen Punktes", - "Vorschlag für einen gemeinsamen Termin", - "Bitte um Rückmeldung bis Ende der Woche", - "Erinnerung an die bevorstehende Frist", - "Bereitstellung zusätzlicher Informationen auf Anfrage" - ] - } - } - ] - }, - { - "id": "section_3", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Detaillierte Beschreibung eines spezifischen Anliegens oder Themas", - "useAiCall": false, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "In der heutigen digitalen Welt ist die Sicherheit von Informationen von größter Bedeutung. Unternehmen müssen sicherstellen, dass ihre Daten vor unbefugtem Zugriff geschützt sind. Dies erfordert den Einsatz fortschrittlicher Verschlüsselungstechnologien und strenger Zugriffsrichtlinien. Darüber hinaus ist es wichtig, regelmäßige Sicherheitsüberprüfungen durchzuführen und Mitarbeiter im Umgang mit sensiblen Daten zu schulen. Nur durch eine umfassende Sicherheitsstrategie können Unternehmen ihre Daten effektiv schützen und das Vertrauen ihrer Kunden bewahren." - } - } - ] - }, - { - "id": "section_4", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Zusammenfassung und Schlussfolgerung des Hauptinhalts", - "useAiCall": false, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Zusammenfassend lässt sich sagen, dass die im vorherigen Dokument behandelten Themen klar und prägnant dargestellt wurden. Die Hauptpunkte umfassen die wesentlichen Aspekte des Themas und bieten eine fundierte Grundlage für weitere Diskussionen oder Entscheidungen. Die Schlussfolgerungen basieren auf den analysierten Daten und bieten wertvolle Einblicke, die für zukünftige Entwicklungen von Bedeutung sein können. Insgesamt wird ein umfassendes Verständnis des behandelten Themas vermittelt, das sowohl für Fachleute als auch für Interessierte von Nutzen ist." - } - } - ] - }, - { - "id": "chapter_3_heading", - "content_type": "heading", - "elements": [ - { - "type": "heading", - "content": { - "text": "Schluss", - "level": 1 - } - } - ] - }, - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Abschluss der E-Mail mit einer Zusammenfassung der wichtigsten Punkte.", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Zusammenfassend lässt sich sagen, dass die besprochenen Punkte von großer Bedeutung für den Erfolg unseres Projekts sind. Wir haben die wichtigsten Meilensteine und Verantwortlichkeiten festgelegt, um sicherzustellen, dass alle Teammitglieder auf dem gleichen Stand sind. Bitte überprüfen Sie die angehängten Dokumente für weitere Details und zögern Sie nicht, bei Fragen oder Anmerkungen Kontakt aufzunehmen. Vielen Dank für Ihre Aufmerksamkeit und Unterstützung." - } - } - ] - }, - { - "id": "section_2", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Freundlicher Gruß zum Abschluss der E-Mail.", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Mit freundlichen Grüßen,\n\n[Ihr Name]" - } - } - ] - } - ], - "metadata": { - "outputStyle": "document" - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175107-117-chapter_structure_generation_prompt.txt b/prompts/20260322-175107-117-chapter_structure_generation_prompt.txt deleted file mode 100644 index 49ba0ee5..00000000 --- a/prompts/20260322-175107-117-chapter_structure_generation_prompt.txt +++ /dev/null @@ -1,119 +0,0 @@ -# TASK: Plan Document Structure (Documents + Chapters) - -This is a STRUCTURE PLANNING task. You define which documents to create and which chapters each document will have. -Chapter CONTENT will be generated in a later step - here you only plan the STRUCTURE and assign content references. -Return EXACTLY ONE complete JSON object. Do not generate multiple JSON objects, alternatives, or variations. Do not use separators like "---" between JSON objects. - -## USER REQUEST (for context) -``` -entwirf eine email mit dem inhalt des files davor -``` - -## AVAILABLE CONTENT PARTS - -(No content parts available) - -## CONTENT ASSIGNMENT RULE - -CRITICAL: Every chapter MUST have contentParts assigned if it relates to documents/images/data from the user request. -If the user request mentions documents/images/data, then EVERY chapter that generates content related to those references MUST assign the relevant ContentParts explicitly. - -Assignment logic: -- If chapter DISPLAYS a document/image → assign "object" format ContentPart with "caption" -- If chapter generates text content ABOUT a document/image/data → assign ContentPart with "instruction": - - Prefer "extracted" format if available (contains analyzed/extracted content) - - If only "object" format is available, use "object" format with "instruction" (to write ABOUT the image/document) -- If chapter's generationHint or purpose relates to a document/image/data mentioned in user request → it MUST have ContentParts assigned -- Multiple chapters might assign the same ContentPart (e.g., one chapter displays image, another writes about it) -- Use ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above -- Empty contentParts are only allowed if chapter generates content WITHOUT referencing any documents/images/data from the user request - -CRITICAL RULE: If the user request mentions BOTH: - a) Documents/images/data (listed in AVAILABLE CONTENT PARTS above), AND - b) Generic content types (article text, main content, body text, etc.) -Then chapters that generate those generic content types MUST assign the relevant ContentParts, because the content should relate to or be based on the provided documents/images/data. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential information only -- AVOID verbose, lengthy, or repetitive text - be concise and direct -- Prioritize FACTS over filler text - no introductions like "In this chapter..." -- Minimize system resources: shorter content = faster processing -- Quality over quantity: precise, meaningful content rather than padding - -## CHAPTER STRUCTURE REQUIREMENTS -- Generate chapters based on USER REQUEST - analyze what structure the user wants -- Create ONLY the minimum chapters needed to cover the user's request - avoid over-structuring -- HARD LIMIT: Maximum 7 chapters per document. If the topic can be covered in fewer, prefer fewer. Combine related topics into single chapters rather than creating many small ones. -- IMPORTANT: Each chapter MUST have ALL these fields: - - id: Unique identifier (e.g., "chapter_1") - - level: Heading level (1, 2, 3, etc.) - - title: Chapter title - - contentParts: Object mapping ContentPart IDs to usage instructions (MUST assign if chapter relates to documents/data from user request) - - generationHint: Description of what content to generate (including formatting/styling requirements) - - sections: Empty array [] (REQUIRED - sections are generated in next phase) -- contentParts: {"partId": {"instruction": "..."} or {"caption": "..."} or both} - Assign ContentParts as required by CONTENT ASSIGNMENT RULE above -- The "instruction" field for each ContentPart MUST contain ALL relevant details from the USER REQUEST that apply to content extraction for this specific chapter. Include all formatting rules, data requirements, constraints, and specifications mentioned in the user request that are relevant for processing this ContentPart in this chapter. -- generationHint: Keep CONCISE but include relevant details from the USER REQUEST. Focus on WHAT to generate, not HOW to phrase it verbosely. -- The number of chapters depends on the user request - create only what is requested. Do NOT create chapters for topics without available data. - -CRITICAL: Only create chapters for CONTENT sections, not for formatting/styling requirements. Formatting/styling requirements to be included in each generationHint if needed. - -## DOCUMENT STRUCTURE - -For each document, determine: -- outputFormat: From USER REQUEST (explicit mention or infer from purpose/content type). Default: "txt". Multiple documents can have different formats. -- language: From USER REQUEST (map to ISO 639-1: de, en, fr, it...). Default: "de". Multiple documents can have different languages. -- chapters: Structure appropriately for the format (e.g., pptx=slides, docx=sections, xlsx=worksheets). Match format capabilities and constraints. - -Required JSON fields: -- metadata: {"title": "...", "language": "..."} -- documents: Array with id, title, filename, outputFormat, language, chapters[] -- chapters: Array with id, level, title, contentParts, generationHint, sections[] - -EXAMPLE STRUCTURE (for reference only - adapt to user request): -{ - "metadata": { - "title": "Document Title", - "language": "de" - }, - "documents": [{ - "id": "doc_1", - "title": "Document Title", - "filename": "document.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Chapter Title", - "contentParts": { - "extracted_part_id": { - "instruction": "Use extracted content with ALL relevant details from user request" - } - }, - "generationHint": "Detailed description including ALL relevant details from user request for this chapter", - "sections": [] - } - ] - }] -} - -CRITICAL INSTRUCTIONS: -- Generate chapters based on USER REQUEST, NOT based on the example above -- The example shows the JSON structure format, NOT the required chapters -- Create only the chapters that match the user's request -- Adapt chapter titles and structure to match the user's specific request -- Determine outputFormat and language for each document by analyzing the USER REQUEST above -- The example shows placeholders "txt" and "de" - YOU MUST REPLACE THESE with actual values determined from the USER REQUEST - -MANDATORY CONTENT ASSIGNMENT CHECK: -For each chapter, verify: -1. Does the user request mention documents/images/data? (e.g., "photo", "image", "document", "data", "based on", "about") -2. Does this chapter's generationHint, title, or purpose relate to those documents/images/data mentioned in step 1? - - Examples: "article about the photo", "text describing the image", "analysis of the document", "content based on the data" - - Even if chapter doesn't explicitly say "about the image", if user request mentions both the image AND this chapter's content type → relate them -3. If YES to both → chapter MUST have contentParts assigned (cannot be empty {}) -4. If ContentPart is "object" format and chapter needs to write ABOUT it → assign with "instruction" field, not just "caption" - -OUTPUT FORMAT: Start with { and end with }. Do NOT use markdown code fences (```json). Do NOT add explanatory text before or after the JSON. Return ONLY the JSON object itself. diff --git a/prompts/20260322-175109-118-chapter_structure_generation_response.txt b/prompts/20260322-175109-118-chapter_structure_generation_response.txt deleted file mode 100644 index 382c5f1d..00000000 --- a/prompts/20260322-175109-118-chapter_structure_generation_response.txt +++ /dev/null @@ -1,25 +0,0 @@ -{ - "metadata": { - "title": "Email Draft", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "Email Draft", - "filename": "email.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Email Content", - "contentParts": {}, - "generationHint": "Draft an email in German based on the user's request. Include a greeting, main message, and closing.", - "sections": [] - } - ] - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175109-119-chapter_structure_generation_final_result.txt b/prompts/20260322-175109-119-chapter_structure_generation_final_result.txt deleted file mode 100644 index 382c5f1d..00000000 --- a/prompts/20260322-175109-119-chapter_structure_generation_final_result.txt +++ /dev/null @@ -1,25 +0,0 @@ -{ - "metadata": { - "title": "Email Draft", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "Email Draft", - "filename": "email.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Email Content", - "contentParts": {}, - "generationHint": "Draft an email in German based on the user's request. Include a greeting, main message, and closing.", - "sections": [] - } - ] - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175109-120-chapter_structure_chapter_1_prompt.txt b/prompts/20260322-175109-120-chapter_structure_chapter_1_prompt.txt deleted file mode 100644 index 66e0b5af..00000000 --- a/prompts/20260322-175109-120-chapter_structure_chapter_1_prompt.txt +++ /dev/null @@ -1,73 +0,0 @@ -TASK: Generate Chapter Sections Structure - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -CHAPTER: Email Content (Level 1, ID: chapter_1) -GENERATION HINT: Draft an email in German based on the user's request. Include a greeting, main message, and closing. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT sections: Focus on essential information only -- AVOID creating too many sections - combine related content where possible -- Each section should serve a clear purpose with meaningful data -- If no relevant data exists for a topic, do NOT create a section for it -- Prefer ONE comprehensive section over multiple sparse sections -- HARD LIMIT: Maximum 5 sections per chapter. Combine related subtopics into single sections to stay within this limit. - -**CRITICAL**: The chapter's generationHint above describes what content this chapter should generate. If the generationHint references documents/images/data, then EACH section that generates content for this chapter MUST assign the relevant ContentParts from AVAILABLE CONTENT PARTS below. - -NOTE: Chapter already has a heading section. Do NOT generate a heading for the chapter title. - -## SECTION INDEPENDENCE -- Each section is independent and self-contained -- One section does NOT have information about another section -- Each section must provide its own context and be understandable alone - -AVAILABLE CONTENT PARTS: - -(No content parts specified for this chapter) - -## CONTENT ASSIGNMENT RULE - CRITICAL -If AVAILABLE CONTENT PARTS are listed above, then EVERY section that generates content related to those ContentParts MUST assign them explicitly. - -**Assignment logic:** -- If section generates text content ABOUT a ContentPart → assign "extracted" format ContentPart with appropriate instruction -- If section DISPLAYS a ContentPart → assign "object" format ContentPart -- If section's generationHint or purpose relates to a ContentPart listed above → it MUST have contentPartIds assigned -- If chapter's generationHint references documents/images/data AND section generates content for that chapter → section MUST assign relevant ContentParts -- Empty contentPartIds [] are only allowed if section generates content WITHOUT referencing any available ContentParts AND WITHOUT relating to chapter's generationHint - -## ACCEPTED CONTENT TYPES FOR THIS FORMAT -The document output format (txt) accepts only the following content types: -table, bullet_list, heading, paragraph, code_block - -**CRITICAL**: Only create sections with content types from this list. Other types will fail. - -useAiCall RULE (simple): -- useAiCall: true → Content needs AI processing (extract, transform, generate, filter, summarize) -- useAiCall: false → Content can be inserted directly without changes (Format is "object" or "reference") - -RETURN JSON: -{ - "sections": [ - { - "id": "section_1", - "content_type": "table", - "contentPartIds": ["extracted_part_id"], - "generationHint": "Description of what to extract or generate", - "useAiCall": true, - "elements": [] - } - ] -} - -**MANDATORY CONTENT ASSIGNMENT CHECK:** -For each section, verify: -1. Are ContentParts listed in AVAILABLE CONTENT PARTS above? -2. Does this section's generationHint or purpose relate to those ContentParts? -3. If YES to both → section MUST have contentPartIds assigned (cannot be empty []) -4. Assign ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above - -IMAGE SECTIONS: -- For image sections, always provide a "caption" field with a descriptive caption for the image. - -Return only valid JSON. Do not include any explanatory text outside the JSON. diff --git a/prompts/20260322-175111-121-chapter_structure_chapter_1_response.txt b/prompts/20260322-175111-121-chapter_structure_chapter_1_response.txt deleted file mode 100644 index 1ee5368c..00000000 --- a/prompts/20260322-175111-121-chapter_structure_chapter_1_response.txt +++ /dev/null @@ -1,19 +0,0 @@ -```json -{ - "sections": [ - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Draft an email in German including a greeting, main message, and closing.", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "text": "Sehr geehrte Damen und Herren,\n\nich hoffe, diese Nachricht trifft Sie wohl. Ich möchte Ihnen mitteilen, dass unser Team an einem neuen Projekt arbeitet, das voraussichtlich im nächsten Quartal abgeschlossen wird. Wir sind zuversichtlich, dass dieses Projekt erhebliche Vorteile für unser Unternehmen bringen wird.\n\nFalls Sie Fragen oder Anmerkungen haben, zögern Sie bitte nicht, mich zu kontaktieren.\n\nMit freundlichen Grüßen,\n\n[Ihr Name]" - } - ] - } - ] -} -``` \ No newline at end of file diff --git a/prompts/20260322-175111-122-chapter_1_section_section_1_prompt.txt b/prompts/20260322-175111-122-chapter_1_section_section_1_prompt.txt deleted file mode 100644 index 403d1fc7..00000000 --- a/prompts/20260322-175111-122-chapter_1_section_section_1_prompt.txt +++ /dev/null @@ -1,50 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_1 -- Content Type: paragraph -- Generation Hint: Draft an email in German including a greeting, main message, and closing. -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - diff --git a/prompts/20260322-175114-123-chapter_1_section_section_1_response.txt b/prompts/20260322-175114-123-chapter_1_section_section_1_response.txt deleted file mode 100644 index efd5b22c..00000000 --- a/prompts/20260322-175114-123-chapter_1_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Betreff: Anfrage bezüglich unserer letzten Besprechung\n\nSehr geehrte Damen und Herren,\n\nich hoffe, diese Nachricht trifft Sie wohl. Ich möchte mich auf unsere letzte Besprechung beziehen und einige Punkte klären, die wir besprochen haben. Es wäre hilfreich, wenn wir die nächsten Schritte und die damit verbundenen Fristen festlegen könnten. Bitte lassen Sie mich wissen, wann Sie Zeit für ein weiteres Treffen haben.\n\nVielen Dank im Voraus für Ihre Unterstützung.\n\nMit freundlichen Grüßen,\n\n[Ihr Name]" - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175114-124-chapter_1_section_section_1_response.txt b/prompts/20260322-175114-124-chapter_1_section_section_1_response.txt deleted file mode 100644 index efd5b22c..00000000 --- a/prompts/20260322-175114-124-chapter_1_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Betreff: Anfrage bezüglich unserer letzten Besprechung\n\nSehr geehrte Damen und Herren,\n\nich hoffe, diese Nachricht trifft Sie wohl. Ich möchte mich auf unsere letzte Besprechung beziehen und einige Punkte klären, die wir besprochen haben. Es wäre hilfreich, wenn wir die nächsten Schritte und die damit verbundenen Fristen festlegen könnten. Bitte lassen Sie mich wissen, wann Sie Zeit für ein weiteres Treffen haben.\n\nVielen Dank im Voraus für Ihre Unterstützung.\n\nMit freundlichen Grüßen,\n\n[Ihr Name]" - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175114-125-document_generation_response.txt b/prompts/20260322-175114-125-document_generation_response.txt deleted file mode 100644 index a0f71747..00000000 --- a/prompts/20260322-175114-125-document_generation_response.txt +++ /dev/null @@ -1,48 +0,0 @@ -{ - "metadata": { - "title": "Email Draft", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "Email Draft", - "filename": "email.txt", - "outputFormat": "txt", - "language": "de", - "sections": [ - { - "id": "chapter_1_heading", - "content_type": "heading", - "elements": [ - { - "type": "heading", - "content": { - "text": "Email Content", - "level": 1 - } - } - ] - }, - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Draft an email in German including a greeting, main message, and closing.", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Betreff: Anfrage bezüglich unserer letzten Besprechung\n\nSehr geehrte Damen und Herren,\n\nich hoffe, diese Nachricht trifft Sie wohl. Ich möchte mich auf unsere letzte Besprechung beziehen und einige Punkte klären, die wir besprochen haben. Es wäre hilfreich, wenn wir die nächsten Schritte und die damit verbundenen Fristen festlegen könnten. Bitte lassen Sie mich wissen, wann Sie Zeit für ein weiteres Treffen haben.\n\nVielen Dank im Voraus für Ihre Unterstützung.\n\nMit freundlichen Grüßen,\n\n[Ihr Name]" - } - } - ] - } - ], - "metadata": { - "outputStyle": "document" - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175649-126-chapter_structure_generation_prompt.txt b/prompts/20260322-175649-126-chapter_structure_generation_prompt.txt deleted file mode 100644 index 49ba0ee5..00000000 --- a/prompts/20260322-175649-126-chapter_structure_generation_prompt.txt +++ /dev/null @@ -1,119 +0,0 @@ -# TASK: Plan Document Structure (Documents + Chapters) - -This is a STRUCTURE PLANNING task. You define which documents to create and which chapters each document will have. -Chapter CONTENT will be generated in a later step - here you only plan the STRUCTURE and assign content references. -Return EXACTLY ONE complete JSON object. Do not generate multiple JSON objects, alternatives, or variations. Do not use separators like "---" between JSON objects. - -## USER REQUEST (for context) -``` -entwirf eine email mit dem inhalt des files davor -``` - -## AVAILABLE CONTENT PARTS - -(No content parts available) - -## CONTENT ASSIGNMENT RULE - -CRITICAL: Every chapter MUST have contentParts assigned if it relates to documents/images/data from the user request. -If the user request mentions documents/images/data, then EVERY chapter that generates content related to those references MUST assign the relevant ContentParts explicitly. - -Assignment logic: -- If chapter DISPLAYS a document/image → assign "object" format ContentPart with "caption" -- If chapter generates text content ABOUT a document/image/data → assign ContentPart with "instruction": - - Prefer "extracted" format if available (contains analyzed/extracted content) - - If only "object" format is available, use "object" format with "instruction" (to write ABOUT the image/document) -- If chapter's generationHint or purpose relates to a document/image/data mentioned in user request → it MUST have ContentParts assigned -- Multiple chapters might assign the same ContentPart (e.g., one chapter displays image, another writes about it) -- Use ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above -- Empty contentParts are only allowed if chapter generates content WITHOUT referencing any documents/images/data from the user request - -CRITICAL RULE: If the user request mentions BOTH: - a) Documents/images/data (listed in AVAILABLE CONTENT PARTS above), AND - b) Generic content types (article text, main content, body text, etc.) -Then chapters that generate those generic content types MUST assign the relevant ContentParts, because the content should relate to or be based on the provided documents/images/data. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential information only -- AVOID verbose, lengthy, or repetitive text - be concise and direct -- Prioritize FACTS over filler text - no introductions like "In this chapter..." -- Minimize system resources: shorter content = faster processing -- Quality over quantity: precise, meaningful content rather than padding - -## CHAPTER STRUCTURE REQUIREMENTS -- Generate chapters based on USER REQUEST - analyze what structure the user wants -- Create ONLY the minimum chapters needed to cover the user's request - avoid over-structuring -- HARD LIMIT: Maximum 7 chapters per document. If the topic can be covered in fewer, prefer fewer. Combine related topics into single chapters rather than creating many small ones. -- IMPORTANT: Each chapter MUST have ALL these fields: - - id: Unique identifier (e.g., "chapter_1") - - level: Heading level (1, 2, 3, etc.) - - title: Chapter title - - contentParts: Object mapping ContentPart IDs to usage instructions (MUST assign if chapter relates to documents/data from user request) - - generationHint: Description of what content to generate (including formatting/styling requirements) - - sections: Empty array [] (REQUIRED - sections are generated in next phase) -- contentParts: {"partId": {"instruction": "..."} or {"caption": "..."} or both} - Assign ContentParts as required by CONTENT ASSIGNMENT RULE above -- The "instruction" field for each ContentPart MUST contain ALL relevant details from the USER REQUEST that apply to content extraction for this specific chapter. Include all formatting rules, data requirements, constraints, and specifications mentioned in the user request that are relevant for processing this ContentPart in this chapter. -- generationHint: Keep CONCISE but include relevant details from the USER REQUEST. Focus on WHAT to generate, not HOW to phrase it verbosely. -- The number of chapters depends on the user request - create only what is requested. Do NOT create chapters for topics without available data. - -CRITICAL: Only create chapters for CONTENT sections, not for formatting/styling requirements. Formatting/styling requirements to be included in each generationHint if needed. - -## DOCUMENT STRUCTURE - -For each document, determine: -- outputFormat: From USER REQUEST (explicit mention or infer from purpose/content type). Default: "txt". Multiple documents can have different formats. -- language: From USER REQUEST (map to ISO 639-1: de, en, fr, it...). Default: "de". Multiple documents can have different languages. -- chapters: Structure appropriately for the format (e.g., pptx=slides, docx=sections, xlsx=worksheets). Match format capabilities and constraints. - -Required JSON fields: -- metadata: {"title": "...", "language": "..."} -- documents: Array with id, title, filename, outputFormat, language, chapters[] -- chapters: Array with id, level, title, contentParts, generationHint, sections[] - -EXAMPLE STRUCTURE (for reference only - adapt to user request): -{ - "metadata": { - "title": "Document Title", - "language": "de" - }, - "documents": [{ - "id": "doc_1", - "title": "Document Title", - "filename": "document.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Chapter Title", - "contentParts": { - "extracted_part_id": { - "instruction": "Use extracted content with ALL relevant details from user request" - } - }, - "generationHint": "Detailed description including ALL relevant details from user request for this chapter", - "sections": [] - } - ] - }] -} - -CRITICAL INSTRUCTIONS: -- Generate chapters based on USER REQUEST, NOT based on the example above -- The example shows the JSON structure format, NOT the required chapters -- Create only the chapters that match the user's request -- Adapt chapter titles and structure to match the user's specific request -- Determine outputFormat and language for each document by analyzing the USER REQUEST above -- The example shows placeholders "txt" and "de" - YOU MUST REPLACE THESE with actual values determined from the USER REQUEST - -MANDATORY CONTENT ASSIGNMENT CHECK: -For each chapter, verify: -1. Does the user request mention documents/images/data? (e.g., "photo", "image", "document", "data", "based on", "about") -2. Does this chapter's generationHint, title, or purpose relate to those documents/images/data mentioned in step 1? - - Examples: "article about the photo", "text describing the image", "analysis of the document", "content based on the data" - - Even if chapter doesn't explicitly say "about the image", if user request mentions both the image AND this chapter's content type → relate them -3. If YES to both → chapter MUST have contentParts assigned (cannot be empty {}) -4. If ContentPart is "object" format and chapter needs to write ABOUT it → assign with "instruction" field, not just "caption" - -OUTPUT FORMAT: Start with { and end with }. Do NOT use markdown code fences (```json). Do NOT add explanatory text before or after the JSON. Return ONLY the JSON object itself. diff --git a/prompts/20260322-175653-127-chapter_structure_generation_response.txt b/prompts/20260322-175653-127-chapter_structure_generation_response.txt deleted file mode 100644 index d067f360..00000000 --- a/prompts/20260322-175653-127-chapter_structure_generation_response.txt +++ /dev/null @@ -1,41 +0,0 @@ -{ - "metadata": { - "title": "Email Entwurf", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "Email Entwurf", - "filename": "email_entwurf.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Einleitung", - "contentParts": {}, - "generationHint": "Einleitung der E-Mail mit einer Begrüßung und einer kurzen Einführung in das Thema.", - "sections": [] - }, - { - "id": "chapter_2", - "level": 1, - "title": "Hauptinhalt", - "contentParts": {}, - "generationHint": "Hauptteil der E-Mail, der die wesentlichen Informationen und den Zweck der Nachricht vermittelt.", - "sections": [] - }, - { - "id": "chapter_3", - "level": 1, - "title": "Schlussfolgerung", - "contentParts": {}, - "generationHint": "Abschluss der E-Mail mit einer Zusammenfassung und einem höflichen Abschluss.", - "sections": [] - } - ] - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175653-128-chapter_structure_generation_final_result.txt b/prompts/20260322-175653-128-chapter_structure_generation_final_result.txt deleted file mode 100644 index d067f360..00000000 --- a/prompts/20260322-175653-128-chapter_structure_generation_final_result.txt +++ /dev/null @@ -1,41 +0,0 @@ -{ - "metadata": { - "title": "Email Entwurf", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "Email Entwurf", - "filename": "email_entwurf.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Einleitung", - "contentParts": {}, - "generationHint": "Einleitung der E-Mail mit einer Begrüßung und einer kurzen Einführung in das Thema.", - "sections": [] - }, - { - "id": "chapter_2", - "level": 1, - "title": "Hauptinhalt", - "contentParts": {}, - "generationHint": "Hauptteil der E-Mail, der die wesentlichen Informationen und den Zweck der Nachricht vermittelt.", - "sections": [] - }, - { - "id": "chapter_3", - "level": 1, - "title": "Schlussfolgerung", - "contentParts": {}, - "generationHint": "Abschluss der E-Mail mit einer Zusammenfassung und einem höflichen Abschluss.", - "sections": [] - } - ] - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175653-129-chapter_structure_chapter_1_prompt.txt b/prompts/20260322-175653-129-chapter_structure_chapter_1_prompt.txt deleted file mode 100644 index a4d6314b..00000000 --- a/prompts/20260322-175653-129-chapter_structure_chapter_1_prompt.txt +++ /dev/null @@ -1,73 +0,0 @@ -TASK: Generate Chapter Sections Structure - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -CHAPTER: Einleitung (Level 1, ID: chapter_1) -GENERATION HINT: Einleitung der E-Mail mit einer Begrüßung und einer kurzen Einführung in das Thema. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT sections: Focus on essential information only -- AVOID creating too many sections - combine related content where possible -- Each section should serve a clear purpose with meaningful data -- If no relevant data exists for a topic, do NOT create a section for it -- Prefer ONE comprehensive section over multiple sparse sections -- HARD LIMIT: Maximum 5 sections per chapter. Combine related subtopics into single sections to stay within this limit. - -**CRITICAL**: The chapter's generationHint above describes what content this chapter should generate. If the generationHint references documents/images/data, then EACH section that generates content for this chapter MUST assign the relevant ContentParts from AVAILABLE CONTENT PARTS below. - -NOTE: Chapter already has a heading section. Do NOT generate a heading for the chapter title. - -## SECTION INDEPENDENCE -- Each section is independent and self-contained -- One section does NOT have information about another section -- Each section must provide its own context and be understandable alone - -AVAILABLE CONTENT PARTS: - -(No content parts specified for this chapter) - -## CONTENT ASSIGNMENT RULE - CRITICAL -If AVAILABLE CONTENT PARTS are listed above, then EVERY section that generates content related to those ContentParts MUST assign them explicitly. - -**Assignment logic:** -- If section generates text content ABOUT a ContentPart → assign "extracted" format ContentPart with appropriate instruction -- If section DISPLAYS a ContentPart → assign "object" format ContentPart -- If section's generationHint or purpose relates to a ContentPart listed above → it MUST have contentPartIds assigned -- If chapter's generationHint references documents/images/data AND section generates content for that chapter → section MUST assign relevant ContentParts -- Empty contentPartIds [] are only allowed if section generates content WITHOUT referencing any available ContentParts AND WITHOUT relating to chapter's generationHint - -## ACCEPTED CONTENT TYPES FOR THIS FORMAT -The document output format (txt) accepts only the following content types: -table, bullet_list, heading, paragraph, code_block - -**CRITICAL**: Only create sections with content types from this list. Other types will fail. - -useAiCall RULE (simple): -- useAiCall: true → Content needs AI processing (extract, transform, generate, filter, summarize) -- useAiCall: false → Content can be inserted directly without changes (Format is "object" or "reference") - -RETURN JSON: -{ - "sections": [ - { - "id": "section_1", - "content_type": "table", - "contentPartIds": ["extracted_part_id"], - "generationHint": "Description of what to extract or generate", - "useAiCall": true, - "elements": [] - } - ] -} - -**MANDATORY CONTENT ASSIGNMENT CHECK:** -For each section, verify: -1. Are ContentParts listed in AVAILABLE CONTENT PARTS above? -2. Does this section's generationHint or purpose relate to those ContentParts? -3. If YES to both → section MUST have contentPartIds assigned (cannot be empty []) -4. Assign ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above - -IMAGE SECTIONS: -- For image sections, always provide a "caption" field with a descriptive caption for the image. - -Return only valid JSON. Do not include any explanatory text outside the JSON. diff --git a/prompts/20260322-175653-130-chapter_structure_chapter_2_prompt.txt b/prompts/20260322-175653-130-chapter_structure_chapter_2_prompt.txt deleted file mode 100644 index b57d22c5..00000000 --- a/prompts/20260322-175653-130-chapter_structure_chapter_2_prompt.txt +++ /dev/null @@ -1,73 +0,0 @@ -TASK: Generate Chapter Sections Structure - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -CHAPTER: Hauptinhalt (Level 1, ID: chapter_2) -GENERATION HINT: Hauptteil der E-Mail, der die wesentlichen Informationen und den Zweck der Nachricht vermittelt. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT sections: Focus on essential information only -- AVOID creating too many sections - combine related content where possible -- Each section should serve a clear purpose with meaningful data -- If no relevant data exists for a topic, do NOT create a section for it -- Prefer ONE comprehensive section over multiple sparse sections -- HARD LIMIT: Maximum 5 sections per chapter. Combine related subtopics into single sections to stay within this limit. - -**CRITICAL**: The chapter's generationHint above describes what content this chapter should generate. If the generationHint references documents/images/data, then EACH section that generates content for this chapter MUST assign the relevant ContentParts from AVAILABLE CONTENT PARTS below. - -NOTE: Chapter already has a heading section. Do NOT generate a heading for the chapter title. - -## SECTION INDEPENDENCE -- Each section is independent and self-contained -- One section does NOT have information about another section -- Each section must provide its own context and be understandable alone - -AVAILABLE CONTENT PARTS: - -(No content parts specified for this chapter) - -## CONTENT ASSIGNMENT RULE - CRITICAL -If AVAILABLE CONTENT PARTS are listed above, then EVERY section that generates content related to those ContentParts MUST assign them explicitly. - -**Assignment logic:** -- If section generates text content ABOUT a ContentPart → assign "extracted" format ContentPart with appropriate instruction -- If section DISPLAYS a ContentPart → assign "object" format ContentPart -- If section's generationHint or purpose relates to a ContentPart listed above → it MUST have contentPartIds assigned -- If chapter's generationHint references documents/images/data AND section generates content for that chapter → section MUST assign relevant ContentParts -- Empty contentPartIds [] are only allowed if section generates content WITHOUT referencing any available ContentParts AND WITHOUT relating to chapter's generationHint - -## ACCEPTED CONTENT TYPES FOR THIS FORMAT -The document output format (txt) accepts only the following content types: -table, bullet_list, heading, paragraph, code_block - -**CRITICAL**: Only create sections with content types from this list. Other types will fail. - -useAiCall RULE (simple): -- useAiCall: true → Content needs AI processing (extract, transform, generate, filter, summarize) -- useAiCall: false → Content can be inserted directly without changes (Format is "object" or "reference") - -RETURN JSON: -{ - "sections": [ - { - "id": "section_1", - "content_type": "table", - "contentPartIds": ["extracted_part_id"], - "generationHint": "Description of what to extract or generate", - "useAiCall": true, - "elements": [] - } - ] -} - -**MANDATORY CONTENT ASSIGNMENT CHECK:** -For each section, verify: -1. Are ContentParts listed in AVAILABLE CONTENT PARTS above? -2. Does this section's generationHint or purpose relate to those ContentParts? -3. If YES to both → section MUST have contentPartIds assigned (cannot be empty []) -4. Assign ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above - -IMAGE SECTIONS: -- For image sections, always provide a "caption" field with a descriptive caption for the image. - -Return only valid JSON. Do not include any explanatory text outside the JSON. diff --git a/prompts/20260322-175653-131-chapter_structure_chapter_3_prompt.txt b/prompts/20260322-175653-131-chapter_structure_chapter_3_prompt.txt deleted file mode 100644 index 4c3323c0..00000000 --- a/prompts/20260322-175653-131-chapter_structure_chapter_3_prompt.txt +++ /dev/null @@ -1,73 +0,0 @@ -TASK: Generate Chapter Sections Structure - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -CHAPTER: Schlussfolgerung (Level 1, ID: chapter_3) -GENERATION HINT: Abschluss der E-Mail mit einer Zusammenfassung und einem höflichen Abschluss. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT sections: Focus on essential information only -- AVOID creating too many sections - combine related content where possible -- Each section should serve a clear purpose with meaningful data -- If no relevant data exists for a topic, do NOT create a section for it -- Prefer ONE comprehensive section over multiple sparse sections -- HARD LIMIT: Maximum 5 sections per chapter. Combine related subtopics into single sections to stay within this limit. - -**CRITICAL**: The chapter's generationHint above describes what content this chapter should generate. If the generationHint references documents/images/data, then EACH section that generates content for this chapter MUST assign the relevant ContentParts from AVAILABLE CONTENT PARTS below. - -NOTE: Chapter already has a heading section. Do NOT generate a heading for the chapter title. - -## SECTION INDEPENDENCE -- Each section is independent and self-contained -- One section does NOT have information about another section -- Each section must provide its own context and be understandable alone - -AVAILABLE CONTENT PARTS: - -(No content parts specified for this chapter) - -## CONTENT ASSIGNMENT RULE - CRITICAL -If AVAILABLE CONTENT PARTS are listed above, then EVERY section that generates content related to those ContentParts MUST assign them explicitly. - -**Assignment logic:** -- If section generates text content ABOUT a ContentPart → assign "extracted" format ContentPart with appropriate instruction -- If section DISPLAYS a ContentPart → assign "object" format ContentPart -- If section's generationHint or purpose relates to a ContentPart listed above → it MUST have contentPartIds assigned -- If chapter's generationHint references documents/images/data AND section generates content for that chapter → section MUST assign relevant ContentParts -- Empty contentPartIds [] are only allowed if section generates content WITHOUT referencing any available ContentParts AND WITHOUT relating to chapter's generationHint - -## ACCEPTED CONTENT TYPES FOR THIS FORMAT -The document output format (txt) accepts only the following content types: -table, bullet_list, heading, paragraph, code_block - -**CRITICAL**: Only create sections with content types from this list. Other types will fail. - -useAiCall RULE (simple): -- useAiCall: true → Content needs AI processing (extract, transform, generate, filter, summarize) -- useAiCall: false → Content can be inserted directly without changes (Format is "object" or "reference") - -RETURN JSON: -{ - "sections": [ - { - "id": "section_1", - "content_type": "table", - "contentPartIds": ["extracted_part_id"], - "generationHint": "Description of what to extract or generate", - "useAiCall": true, - "elements": [] - } - ] -} - -**MANDATORY CONTENT ASSIGNMENT CHECK:** -For each section, verify: -1. Are ContentParts listed in AVAILABLE CONTENT PARTS above? -2. Does this section's generationHint or purpose relate to those ContentParts? -3. If YES to both → section MUST have contentPartIds assigned (cannot be empty []) -4. Assign ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above - -IMAGE SECTIONS: -- For image sections, always provide a "caption" field with a descriptive caption for the image. - -Return only valid JSON. Do not include any explanatory text outside the JSON. diff --git a/prompts/20260322-175655-132-chapter_structure_chapter_1_response.txt b/prompts/20260322-175655-132-chapter_structure_chapter_1_response.txt deleted file mode 100644 index 112da33c..00000000 --- a/prompts/20260322-175655-132-chapter_structure_chapter_1_response.txt +++ /dev/null @@ -1,17 +0,0 @@ -```json -{ - "sections": [ - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Begrüßung und Einführung in das Thema der E-Mail", - "useAiCall": false, - "elements": [ - "Sehr geehrte Damen und Herren,", - "Willkommen zu unserer Einführung in das Thema der E-Mail-Kommunikation. In der heutigen digitalen Welt ist die E-Mail ein unverzichtbares Werkzeug für den Austausch von Informationen und die Pflege von Beziehungen. In diesem Kapitel werden wir die Grundlagen der effektiven E-Mail-Kommunikation und deren Bedeutung im beruflichen und privaten Kontext beleuchten." - ] - } - ] -} -``` \ No newline at end of file diff --git a/prompts/20260322-175656-133-chapter_structure_chapter_3_response.txt b/prompts/20260322-175656-133-chapter_structure_chapter_3_response.txt deleted file mode 100644 index a5f04f74..00000000 --- a/prompts/20260322-175656-133-chapter_structure_chapter_3_response.txt +++ /dev/null @@ -1,26 +0,0 @@ -```json -{ - "sections": [ - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Zusammenfassung der Hauptpunkte der E-Mail", - "useAiCall": true, - "elements": [ - "In dieser E-Mail haben wir die wichtigsten Themen und Erkenntnisse zusammengefasst. Wir haben die zentralen Punkte hervorgehoben, um sicherzustellen, dass alle relevanten Informationen klar und prägnant vermittelt werden." - ] - }, - { - "id": "section_2", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Höflicher Abschluss der E-Mail", - "useAiCall": true, - "elements": [ - "Wir danken Ihnen für Ihre Aufmerksamkeit und stehen für weitere Fragen oder Anmerkungen jederzeit zur Verfügung. Wir freuen uns auf Ihre Rückmeldung und wünschen Ihnen einen erfolgreichen Tag." - ] - } - ] -} -``` \ No newline at end of file diff --git a/prompts/20260322-175659-134-chapter_structure_chapter_2_response.txt b/prompts/20260322-175659-134-chapter_structure_chapter_2_response.txt deleted file mode 100644 index 074bdaab..00000000 --- a/prompts/20260322-175659-134-chapter_structure_chapter_2_response.txt +++ /dev/null @@ -1,59 +0,0 @@ -```json -{ - "sections": [ - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Einleitung des Hauptinhalts, die den Zweck der E-Mail beschreibt", - "useAiCall": false, - "elements": [ - "In dieser E-Mail möchten wir Ihnen die neuesten Informationen und Updates zu unserem Produkt vorstellen. Unser Ziel ist es, Ihnen einen umfassenden Überblick über die aktuellen Entwicklungen zu geben und wie diese Ihre Nutzung unseres Produkts verbessern können." - ] - }, - { - "id": "section_2", - "content_type": "bullet_list", - "contentPartIds": [], - "generationHint": "Hauptpunkte und Vorteile des Produkts", - "useAiCall": false, - "elements": [ - "Erhöhte Effizienz durch neue Funktionen", - "Verbesserte Benutzeroberfläche für eine einfachere Navigation", - "Erweiterte Sicherheitsmaßnahmen zum Schutz Ihrer Daten", - "Kosteneinsparungen durch optimierte Prozesse" - ] - }, - { - "id": "section_3", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Detaillierte Erklärung eines wichtigen Features", - "useAiCall": false, - "elements": [ - "Ein herausragendes Merkmal unseres neuesten Updates ist die Integration von KI-gestützten Analysetools. Diese Tools ermöglichen es Ihnen, tiefere Einblicke in Ihre Daten zu gewinnen und fundierte Entscheidungen zu treffen, die auf präzisen Analysen basieren." - ] - }, - { - "id": "section_4", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Anleitung zur Nutzung eines neuen Features", - "useAiCall": false, - "elements": [ - "Um das neue KI-Analysetool zu nutzen, navigieren Sie einfach zum Dashboard und wählen Sie die Option 'Datenanalyse'. Von dort aus können Sie spezifische Parameter einstellen, um maßgeschneiderte Berichte zu erstellen, die Ihren individuellen Anforderungen entsprechen." - ] - }, - { - "id": "section_5", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Abschluss und Kontaktinformationen", - "useAiCall": false, - "elements": [ - "Wir hoffen, dass diese Informationen hilfreich für Sie sind und freuen uns darauf, Ihnen weiterhin den bestmöglichen Service zu bieten. Bei Fragen oder Anregungen stehen wir Ihnen jederzeit zur Verfügung. Kontaktieren Sie uns einfach über unsere Support-Hotline oder per E-Mail." - ] - } - ] -} -``` \ No newline at end of file diff --git a/prompts/20260322-175659-135-chapter_1_section_section_1_prompt.txt b/prompts/20260322-175659-135-chapter_1_section_section_1_prompt.txt deleted file mode 100644 index 55dceb04..00000000 --- a/prompts/20260322-175659-135-chapter_1_section_section_1_prompt.txt +++ /dev/null @@ -1,56 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_1 -- Content Type: paragraph -- Generation Hint: Begrüßung und Einführung in das Thema der E-Mail -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Following sections: -- section_1 (paragraph): -- section_2 (bullet_list): - diff --git a/prompts/20260322-175659-136-chapter_2_section_section_1_prompt.txt b/prompts/20260322-175659-136-chapter_2_section_section_1_prompt.txt deleted file mode 100644 index ab498727..00000000 --- a/prompts/20260322-175659-136-chapter_2_section_section_1_prompt.txt +++ /dev/null @@ -1,56 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_1 -- Content Type: paragraph -- Generation Hint: Einleitung des Hauptinhalts, die den Zweck der E-Mail beschreibt -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Following sections: -- section_1 (paragraph): -- section_2 (bullet_list): - diff --git a/prompts/20260322-175659-137-chapter_2_section_section_2_prompt.txt b/prompts/20260322-175659-137-chapter_2_section_section_2_prompt.txt deleted file mode 100644 index 5513700d..00000000 --- a/prompts/20260322-175659-137-chapter_2_section_section_2_prompt.txt +++ /dev/null @@ -1,59 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_2 -- Content Type: bullet_list -- Generation Hint: Hauptpunkte und Vorteile des Produkts -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (bullet_list). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "bullet_list", - "content": {{"items": ["Item 1", "Item 2", "Item 3"]}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): - -Following sections: -- section_2 (bullet_list): -- section_3 (paragraph): - diff --git a/prompts/20260322-175659-138-chapter_2_section_section_3_prompt.txt b/prompts/20260322-175659-138-chapter_2_section_section_3_prompt.txt deleted file mode 100644 index fbfa5f64..00000000 --- a/prompts/20260322-175659-138-chapter_2_section_section_3_prompt.txt +++ /dev/null @@ -1,60 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_3 -- Content Type: paragraph -- Generation Hint: Detaillierte Erklärung eines wichtigen Features -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): -- section_1 (paragraph): - -Following sections: -- section_3 (paragraph): -- section_4 (paragraph): - diff --git a/prompts/20260322-175659-139-chapter_2_section_section_4_prompt.txt b/prompts/20260322-175659-139-chapter_2_section_section_4_prompt.txt deleted file mode 100644 index efdbb64b..00000000 --- a/prompts/20260322-175659-139-chapter_2_section_section_4_prompt.txt +++ /dev/null @@ -1,60 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_4 -- Content Type: paragraph -- Generation Hint: Anleitung zur Nutzung eines neuen Features -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): -- section_2 (bullet_list): - -Following sections: -- section_4 (paragraph): -- section_5 (paragraph): - diff --git a/prompts/20260322-175700-140-chapter_2_section_section_2_response.txt b/prompts/20260322-175700-140-chapter_2_section_section_2_response.txt deleted file mode 100644 index cb10d7d4..00000000 --- a/prompts/20260322-175700-140-chapter_2_section_section_2_response.txt +++ /dev/null @@ -1,18 +0,0 @@ -{ - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Hochwertige Materialien für Langlebigkeit", - "Energieeffizientes Design spart Kosten", - "Benutzerfreundliche Bedienung", - "Modernes und ansprechendes Design", - "Vielseitige Einsatzmöglichkeiten", - "Umweltfreundliche Produktion", - "Exzellenter Kundenservice" - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175700-141-chapter_2_section_section_2_response.txt b/prompts/20260322-175700-141-chapter_2_section_section_2_response.txt deleted file mode 100644 index cb10d7d4..00000000 --- a/prompts/20260322-175700-141-chapter_2_section_section_2_response.txt +++ /dev/null @@ -1,18 +0,0 @@ -{ - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Hochwertige Materialien für Langlebigkeit", - "Energieeffizientes Design spart Kosten", - "Benutzerfreundliche Bedienung", - "Modernes und ansprechendes Design", - "Vielseitige Einsatzmöglichkeiten", - "Umweltfreundliche Produktion", - "Exzellenter Kundenservice" - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175700-142-chapter_2_section_section_5_prompt.txt b/prompts/20260322-175700-142-chapter_2_section_section_5_prompt.txt deleted file mode 100644 index 45fde45e..00000000 --- a/prompts/20260322-175700-142-chapter_2_section_section_5_prompt.txt +++ /dev/null @@ -1,60 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_5 -- Content Type: paragraph -- Generation Hint: Abschluss und Kontaktinformationen -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_2 (bullet_list): -- section_3 (paragraph): - -Following sections: -- section_5 (paragraph): -- section_1 (paragraph): - diff --git a/prompts/20260322-175701-143-chapter_2_section_section_1_response.txt b/prompts/20260322-175701-143-chapter_2_section_section_1_response.txt deleted file mode 100644 index 86e12473..00000000 --- a/prompts/20260322-175701-143-chapter_2_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Diese E-Mail dient dazu, den Hauptinhalt des vorherigen Dokuments zusammenzufassen und die wichtigsten Punkte hervorzuheben. Ziel ist es, den Empfänger über die wesentlichen Informationen zu informieren und gegebenenfalls weitere Schritte oder Maßnahmen zu empfehlen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175701-144-chapter_2_section_section_1_response.txt b/prompts/20260322-175701-144-chapter_2_section_section_1_response.txt deleted file mode 100644 index 86e12473..00000000 --- a/prompts/20260322-175701-144-chapter_2_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Diese E-Mail dient dazu, den Hauptinhalt des vorherigen Dokuments zusammenzufassen und die wichtigsten Punkte hervorzuheben. Ziel ist es, den Empfänger über die wesentlichen Informationen zu informieren und gegebenenfalls weitere Schritte oder Maßnahmen zu empfehlen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175701-145-chapter_3_section_section_1_prompt.txt b/prompts/20260322-175701-145-chapter_3_section_section_1_prompt.txt deleted file mode 100644 index 83eb1c6e..00000000 --- a/prompts/20260322-175701-145-chapter_3_section_section_1_prompt.txt +++ /dev/null @@ -1,56 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_1 -- Content Type: paragraph -- Generation Hint: Zusammenfassung der Hauptpunkte der E-Mail -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Following sections: -- section_1 (paragraph): -- section_2 (bullet_list): - diff --git a/prompts/20260322-175701-146-chapter_1_section_section_1_response.txt b/prompts/20260322-175701-146-chapter_1_section_section_1_response.txt deleted file mode 100644 index b7e57fd8..00000000 --- a/prompts/20260322-175701-146-chapter_1_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Herzlich willkommen! In dieser E-Mail möchten wir Ihnen einen Überblick über das Thema geben, das wir in den folgenden Abschnitten näher beleuchten werden. Wir freuen uns, Ihnen wertvolle Informationen und Einblicke zu präsentieren, die Ihnen bei Ihren Entscheidungen helfen können." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175701-147-chapter_1_section_section_1_response.txt b/prompts/20260322-175701-147-chapter_1_section_section_1_response.txt deleted file mode 100644 index b7e57fd8..00000000 --- a/prompts/20260322-175701-147-chapter_1_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Herzlich willkommen! In dieser E-Mail möchten wir Ihnen einen Überblick über das Thema geben, das wir in den folgenden Abschnitten näher beleuchten werden. Wir freuen uns, Ihnen wertvolle Informationen und Einblicke zu präsentieren, die Ihnen bei Ihren Entscheidungen helfen können." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175701-148-chapter_3_section_section_2_prompt.txt b/prompts/20260322-175701-148-chapter_3_section_section_2_prompt.txt deleted file mode 100644 index e0d03a41..00000000 --- a/prompts/20260322-175701-148-chapter_3_section_section_2_prompt.txt +++ /dev/null @@ -1,59 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_2 -- Content Type: paragraph -- Generation Hint: Höflicher Abschluss der E-Mail -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): - -Following sections: -- section_2 (bullet_list): -- section_3 (paragraph): - diff --git a/prompts/20260322-175701-149-chapter_2_section_section_3_response.txt b/prompts/20260322-175701-149-chapter_2_section_section_3_response.txt deleted file mode 100644 index 3dc17f65..00000000 --- a/prompts/20260322-175701-149-chapter_2_section_section_3_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Ein wichtiges Feature unserer Software ist die automatische Datensicherung. Diese Funktion ermöglicht es Benutzern, ihre Daten in regelmäßigen Abständen ohne manuelle Eingriffe zu sichern. Die Sicherungen werden in einem verschlüsselten Format gespeichert, um maximale Sicherheit zu gewährleisten. Benutzer können den Sicherungszeitplan individuell anpassen und erhalten Benachrichtigungen über den Status der Sicherungen. Diese Funktion minimiert das Risiko von Datenverlusten und sorgt für eine kontinuierliche Verfügbarkeit wichtiger Informationen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175701-150-chapter_2_section_section_3_response.txt b/prompts/20260322-175701-150-chapter_2_section_section_3_response.txt deleted file mode 100644 index 3dc17f65..00000000 --- a/prompts/20260322-175701-150-chapter_2_section_section_3_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Ein wichtiges Feature unserer Software ist die automatische Datensicherung. Diese Funktion ermöglicht es Benutzern, ihre Daten in regelmäßigen Abständen ohne manuelle Eingriffe zu sichern. Die Sicherungen werden in einem verschlüsselten Format gespeichert, um maximale Sicherheit zu gewährleisten. Benutzer können den Sicherungszeitplan individuell anpassen und erhalten Benachrichtigungen über den Status der Sicherungen. Diese Funktion minimiert das Risiko von Datenverlusten und sorgt für eine kontinuierliche Verfügbarkeit wichtiger Informationen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175701-151-chapter_2_section_section_4_response.txt b/prompts/20260322-175701-151-chapter_2_section_section_4_response.txt deleted file mode 100644 index cd8c3389..00000000 --- a/prompts/20260322-175701-151-chapter_2_section_section_4_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Um das neue Feature zu nutzen, öffnen Sie die Anwendung und navigieren Sie zum Einstellungsmenü. Aktivieren Sie die Option 'Neues Feature' unter dem Abschnitt 'Erweiterte Funktionen'. Stellen Sie sicher, dass Ihre Software auf dem neuesten Stand ist, um alle Vorteile zu nutzen. Nach der Aktivierung können Sie die erweiterten Optionen im Hauptmenü einsehen. Bei Fragen steht Ihnen der Support zur Verfügung." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175701-152-chapter_2_section_section_4_response.txt b/prompts/20260322-175701-152-chapter_2_section_section_4_response.txt deleted file mode 100644 index cd8c3389..00000000 --- a/prompts/20260322-175701-152-chapter_2_section_section_4_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Um das neue Feature zu nutzen, öffnen Sie die Anwendung und navigieren Sie zum Einstellungsmenü. Aktivieren Sie die Option 'Neues Feature' unter dem Abschnitt 'Erweiterte Funktionen'. Stellen Sie sicher, dass Ihre Software auf dem neuesten Stand ist, um alle Vorteile zu nutzen. Nach der Aktivierung können Sie die erweiterten Optionen im Hauptmenü einsehen. Bei Fragen steht Ihnen der Support zur Verfügung." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175702-153-chapter_2_section_section_5_response.txt b/prompts/20260322-175702-153-chapter_2_section_section_5_response.txt deleted file mode 100644 index 55570c01..00000000 --- a/prompts/20260322-175702-153-chapter_2_section_section_5_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Vielen Dank für Ihr Interesse an unseren Dienstleistungen. Für weitere Informationen oder bei Fragen stehen wir Ihnen gerne zur Verfügung. Sie können uns jederzeit per E-Mail unter info@unternehmen.de oder telefonisch unter +49 123 456789 erreichen. Wir freuen uns darauf, von Ihnen zu hören und Ihnen weiterhelfen zu können." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175702-154-chapter_2_section_section_5_response.txt b/prompts/20260322-175702-154-chapter_2_section_section_5_response.txt deleted file mode 100644 index 55570c01..00000000 --- a/prompts/20260322-175702-154-chapter_2_section_section_5_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Vielen Dank für Ihr Interesse an unseren Dienstleistungen. Für weitere Informationen oder bei Fragen stehen wir Ihnen gerne zur Verfügung. Sie können uns jederzeit per E-Mail unter info@unternehmen.de oder telefonisch unter +49 123 456789 erreichen. Wir freuen uns darauf, von Ihnen zu hören und Ihnen weiterhelfen zu können." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175702-155-chapter_3_section_section_2_response.txt b/prompts/20260322-175702-155-chapter_3_section_section_2_response.txt deleted file mode 100644 index c6cf5fd8..00000000 --- a/prompts/20260322-175702-155-chapter_3_section_section_2_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Vielen Dank für Ihre Aufmerksamkeit und Unterstützung. Ich freue mich auf Ihre Rückmeldung und stehe für weitere Fragen jederzeit zur Verfügung. Mit freundlichen Grüßen, [Ihr Name]" - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175702-156-chapter_3_section_section_2_response.txt b/prompts/20260322-175702-156-chapter_3_section_section_2_response.txt deleted file mode 100644 index c6cf5fd8..00000000 --- a/prompts/20260322-175702-156-chapter_3_section_section_2_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Vielen Dank für Ihre Aufmerksamkeit und Unterstützung. Ich freue mich auf Ihre Rückmeldung und stehe für weitere Fragen jederzeit zur Verfügung. Mit freundlichen Grüßen, [Ihr Name]" - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175702-157-chapter_3_section_section_1_response.txt b/prompts/20260322-175702-157-chapter_3_section_section_1_response.txt deleted file mode 100644 index cba07168..00000000 --- a/prompts/20260322-175702-157-chapter_3_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Die E-Mail fasst die wichtigsten Punkte zusammen: Der aktuelle Projektstatus wird erläutert, einschließlich der erreichten Meilensteine und der noch offenen Aufgaben. Es wird auf die nächsten Schritte eingegangen und die Verantwortlichkeiten der Teammitglieder werden hervorgehoben. Zudem werden Fristen für die kommenden Aufgaben festgelegt und es wird um Rückmeldungen zu spezifischen Fragen gebeten. Abschließend wird die Bedeutung der Zusammenarbeit betont, um die Projektziele erfolgreich zu erreichen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175702-158-chapter_3_section_section_1_response.txt b/prompts/20260322-175702-158-chapter_3_section_section_1_response.txt deleted file mode 100644 index cba07168..00000000 --- a/prompts/20260322-175702-158-chapter_3_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Die E-Mail fasst die wichtigsten Punkte zusammen: Der aktuelle Projektstatus wird erläutert, einschließlich der erreichten Meilensteine und der noch offenen Aufgaben. Es wird auf die nächsten Schritte eingegangen und die Verantwortlichkeiten der Teammitglieder werden hervorgehoben. Zudem werden Fristen für die kommenden Aufgaben festgelegt und es wird um Rückmeldungen zu spezifischen Fragen gebeten. Abschließend wird die Bedeutung der Zusammenarbeit betont, um die Projektziele erfolgreich zu erreichen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175702-159-document_generation_response.txt b/prompts/20260322-175702-159-document_generation_response.txt deleted file mode 100644 index d934c6f6..00000000 --- a/prompts/20260322-175702-159-document_generation_response.txt +++ /dev/null @@ -1,187 +0,0 @@ -{ - "metadata": { - "title": "Email Entwurf", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "Email Entwurf", - "filename": "email_entwurf.txt", - "outputFormat": "txt", - "language": "de", - "sections": [ - { - "id": "chapter_1_heading", - "content_type": "heading", - "elements": [ - { - "type": "heading", - "content": { - "text": "Einleitung", - "level": 1 - } - } - ] - }, - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Begrüßung und Einführung in das Thema der E-Mail", - "useAiCall": false, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Herzlich willkommen! In dieser E-Mail möchten wir Ihnen einen Überblick über das Thema geben, das wir in den folgenden Abschnitten näher beleuchten werden. Wir freuen uns, Ihnen wertvolle Informationen und Einblicke zu präsentieren, die Ihnen bei Ihren Entscheidungen helfen können." - } - } - ] - }, - { - "id": "chapter_2_heading", - "content_type": "heading", - "elements": [ - { - "type": "heading", - "content": { - "text": "Hauptinhalt", - "level": 1 - } - } - ] - }, - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Einleitung des Hauptinhalts, die den Zweck der E-Mail beschreibt", - "useAiCall": false, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Diese E-Mail dient dazu, den Hauptinhalt des vorherigen Dokuments zusammenzufassen und die wichtigsten Punkte hervorzuheben. Ziel ist es, den Empfänger über die wesentlichen Informationen zu informieren und gegebenenfalls weitere Schritte oder Maßnahmen zu empfehlen." - } - } - ] - }, - { - "id": "section_2", - "content_type": "bullet_list", - "contentPartIds": [], - "generationHint": "Hauptpunkte und Vorteile des Produkts", - "useAiCall": false, - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Hochwertige Materialien für Langlebigkeit", - "Energieeffizientes Design spart Kosten", - "Benutzerfreundliche Bedienung", - "Modernes und ansprechendes Design", - "Vielseitige Einsatzmöglichkeiten", - "Umweltfreundliche Produktion", - "Exzellenter Kundenservice" - ] - } - } - ] - }, - { - "id": "section_3", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Detaillierte Erklärung eines wichtigen Features", - "useAiCall": false, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Ein wichtiges Feature unserer Software ist die automatische Datensicherung. Diese Funktion ermöglicht es Benutzern, ihre Daten in regelmäßigen Abständen ohne manuelle Eingriffe zu sichern. Die Sicherungen werden in einem verschlüsselten Format gespeichert, um maximale Sicherheit zu gewährleisten. Benutzer können den Sicherungszeitplan individuell anpassen und erhalten Benachrichtigungen über den Status der Sicherungen. Diese Funktion minimiert das Risiko von Datenverlusten und sorgt für eine kontinuierliche Verfügbarkeit wichtiger Informationen." - } - } - ] - }, - { - "id": "section_4", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Anleitung zur Nutzung eines neuen Features", - "useAiCall": false, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Um das neue Feature zu nutzen, öffnen Sie die Anwendung und navigieren Sie zum Einstellungsmenü. Aktivieren Sie die Option 'Neues Feature' unter dem Abschnitt 'Erweiterte Funktionen'. Stellen Sie sicher, dass Ihre Software auf dem neuesten Stand ist, um alle Vorteile zu nutzen. Nach der Aktivierung können Sie die erweiterten Optionen im Hauptmenü einsehen. Bei Fragen steht Ihnen der Support zur Verfügung." - } - } - ] - }, - { - "id": "section_5", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Abschluss und Kontaktinformationen", - "useAiCall": false, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Vielen Dank für Ihr Interesse an unseren Dienstleistungen. Für weitere Informationen oder bei Fragen stehen wir Ihnen gerne zur Verfügung. Sie können uns jederzeit per E-Mail unter info@unternehmen.de oder telefonisch unter +49 123 456789 erreichen. Wir freuen uns darauf, von Ihnen zu hören und Ihnen weiterhelfen zu können." - } - } - ] - }, - { - "id": "chapter_3_heading", - "content_type": "heading", - "elements": [ - { - "type": "heading", - "content": { - "text": "Schlussfolgerung", - "level": 1 - } - } - ] - }, - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Zusammenfassung der Hauptpunkte der E-Mail", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Die E-Mail fasst die wichtigsten Punkte zusammen: Der aktuelle Projektstatus wird erläutert, einschließlich der erreichten Meilensteine und der noch offenen Aufgaben. Es wird auf die nächsten Schritte eingegangen und die Verantwortlichkeiten der Teammitglieder werden hervorgehoben. Zudem werden Fristen für die kommenden Aufgaben festgelegt und es wird um Rückmeldungen zu spezifischen Fragen gebeten. Abschließend wird die Bedeutung der Zusammenarbeit betont, um die Projektziele erfolgreich zu erreichen." - } - } - ] - }, - { - "id": "section_2", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Höflicher Abschluss der E-Mail", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Vielen Dank für Ihre Aufmerksamkeit und Unterstützung. Ich freue mich auf Ihre Rückmeldung und stehe für weitere Fragen jederzeit zur Verfügung. Mit freundlichen Grüßen, [Ihr Name]" - } - } - ] - } - ], - "metadata": { - "outputStyle": "document" - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175703-160-email_composition_prompt.txt b/prompts/20260322-175703-160-email_composition_prompt.txt deleted file mode 100644 index 4ef8ba53..00000000 --- a/prompts/20260322-175703-160-email_composition_prompt.txt +++ /dev/null @@ -1,22 +0,0 @@ -Compose an email based on this context: -------- -Email Entwurf\n=============\n\nEinleitung\n==========\n\nHerzlich willkommen! In dieser E-Mail möchten wir Ihnen einen Überblick über das Thema geben, das wir in den folgenden Abschnitten näher beleuchten werden. Wir freuen uns, Ihnen wertvolle Informationen und Einblicke zu präsentieren, die Ihnen bei Ihren Entscheidungen helfen können.\n\nHauptinhalt\n===========\n\nDiese E-Mail dient dazu, den Hauptinhalt des vorherigen Dokuments zusammenzufassen und die wichtigsten Punkte hervorzuheben. Ziel ist es, den Empfänger über die wesentlichen Informationen zu informieren und gegebenenfalls weitere Schritte oder Maßnahmen zu empfehlen.\n\n- Hochwertige Materialien für Langlebigkeit\n- Energieeffizientes Design spart Kosten\n- Benutzerfreundliche Bedienung\n- Modernes und ansprechendes Design\n- Vielseitige Einsatzmöglichkeiten\n- Umweltfreundliche Produktion\n- Exzellenter Kundenservice\n\nEin wichtiges Feature unserer Software ist die automatische Datensicherung. Diese Funktion ermöglicht es Benutzern, ihre Daten in regelmäßigen Abständen ohne manuelle Eingriffe zu sichern. Die Sicherungen werden in einem verschlüsselten Format gespeichert, um maximale Sicherheit zu gewährleisten. Benutzer können den Sicherungszeitplan individuell anpassen und erhalten Benachrichtigungen über den Status der Sicherungen. Diese Funktion minimiert das Risiko von Datenverlusten und sorgt für eine kontinuierliche Verfügbarkeit wichtiger Informationen.\n\nUm das neue Feature zu nutzen, öffnen Sie die Anwendung und navigieren Sie zum Einstellungsmenü. Aktivieren Sie die Option 'Neues Feature' unter dem Abschnitt 'Erweiterte Funktionen'. Stellen Sie sicher, dass Ihre Software auf dem neuesten Stand ist, um alle Vorteile zu nutzen. Nach der Aktivierung können Sie die erweiterten Optionen im Hauptmenü einsehen. Bei Fragen steht Ihnen der Support zur Verfügung.\n\nVielen Dank für Ihr Interesse an unseren Dienstleistungen. Für weitere Informationen oder bei Fragen stehen wir Ihnen gerne zur Verfügung. Sie können uns jederzeit per E-Mail unter info@unternehmen.de oder telefonisch unter +49 123 456789 erreichen. Wir freuen uns darauf, von Ihnen zu hören und Ihnen weiterhelfen zu können.\n\nSchlussfolgerung\n================\n\nDie E-Mail fasst die wichtigsten Punkte zusammen: Der aktuelle Projektstatus wird erläutert, einschließlich der erreichten Meilensteine und der noch offenen Aufgaben. Es wird auf die nächsten Schritte eingegangen und die Verantwortlichkeiten der Teammitglieder werden hervorgehoben. Zudem werden Fristen für die kommenden Aufgaben festgelegt und es wird um Rückmeldungen zu spezifischen Fragen gebeten. Abschließend wird die Bedeutung der Zusammenarbeit betont, um die Projektziele erfolgreich zu erreichen.\n\nVielen Dank für Ihre Aufmerksamkeit und Unterstützung. Ich freue mich auf Ihre Rückmeldung und stehe für weitere Fragen jederzeit zur Verfügung. Mit freundlichen Grüßen, [Ihr Name]\n\n\nGenerated: 2026-03-22 17:57:02 UTC -------- - -Recipients: (not specified - this is a draft) -Style: business -Max length: 1000 characters - -Available_Document_References: - - (no documents) - -Based on the context, decide which documents to attach. - -CRITICAL: Use EXACT document references from Available_Document_References above. For individual documents: ALWAYS use docItem:: format (include filename) - -Return JSON: -{ - "subject": "subject line", - "body": "email body (HTML allowed)", - "attachments": ["docItem::"] -} diff --git a/prompts/20260322-175706-161-email_composition_response.txt b/prompts/20260322-175706-161-email_composition_response.txt deleted file mode 100644 index 52282f01..00000000 --- a/prompts/20260322-175706-161-email_composition_response.txt +++ /dev/null @@ -1,7 +0,0 @@ -```json -{ - "subject": "Einführung in unsere neuesten Funktionen und Vorteile", - "body": "Sehr geehrte Damen und Herren,

Herzlich willkommen! In dieser E-Mail möchten wir Ihnen einen Überblick über unsere neuesten Funktionen und Vorteile geben, die Ihnen bei Ihren Entscheidungen helfen können.

Hauptinhalt:
- Hochwertige Materialien für Langlebigkeit
- Energieeffizientes Design spart Kosten
- Benutzerfreundliche Bedienung
- Modernes und ansprechendes Design
- Vielseitige Einsatzmöglichkeiten
- Umweltfreundliche Produktion
- Exzellenter Kundenservice

Ein wichtiges Feature unserer Software ist die automatische Datensicherung, die maximale Sicherheit und kontinuierliche Verfügbarkeit Ihrer Daten gewährleistet.

Um das neue Feature zu nutzen, öffnen Sie die Anwendung und navigieren Sie zum Einstellungsmenü. Bei Fragen steht Ihnen unser Support zur Verfügung.

Vielen Dank für Ihr Interesse an unseren Dienstleistungen. Für weitere Informationen oder bei Fragen erreichen Sie uns jederzeit per E-Mail unter info@unternehmen.de oder telefonisch unter +49 123 456789.

Mit freundlichen Grüßen,
[Ihr Name]", - "attachments": [] -} -``` \ No newline at end of file diff --git a/prompts/20260322-175827-162-chapter_structure_generation_prompt.txt b/prompts/20260322-175827-162-chapter_structure_generation_prompt.txt deleted file mode 100644 index 49ba0ee5..00000000 --- a/prompts/20260322-175827-162-chapter_structure_generation_prompt.txt +++ /dev/null @@ -1,119 +0,0 @@ -# TASK: Plan Document Structure (Documents + Chapters) - -This is a STRUCTURE PLANNING task. You define which documents to create and which chapters each document will have. -Chapter CONTENT will be generated in a later step - here you only plan the STRUCTURE and assign content references. -Return EXACTLY ONE complete JSON object. Do not generate multiple JSON objects, alternatives, or variations. Do not use separators like "---" between JSON objects. - -## USER REQUEST (for context) -``` -entwirf eine email mit dem inhalt des files davor -``` - -## AVAILABLE CONTENT PARTS - -(No content parts available) - -## CONTENT ASSIGNMENT RULE - -CRITICAL: Every chapter MUST have contentParts assigned if it relates to documents/images/data from the user request. -If the user request mentions documents/images/data, then EVERY chapter that generates content related to those references MUST assign the relevant ContentParts explicitly. - -Assignment logic: -- If chapter DISPLAYS a document/image → assign "object" format ContentPart with "caption" -- If chapter generates text content ABOUT a document/image/data → assign ContentPart with "instruction": - - Prefer "extracted" format if available (contains analyzed/extracted content) - - If only "object" format is available, use "object" format with "instruction" (to write ABOUT the image/document) -- If chapter's generationHint or purpose relates to a document/image/data mentioned in user request → it MUST have ContentParts assigned -- Multiple chapters might assign the same ContentPart (e.g., one chapter displays image, another writes about it) -- Use ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above -- Empty contentParts are only allowed if chapter generates content WITHOUT referencing any documents/images/data from the user request - -CRITICAL RULE: If the user request mentions BOTH: - a) Documents/images/data (listed in AVAILABLE CONTENT PARTS above), AND - b) Generic content types (article text, main content, body text, etc.) -Then chapters that generate those generic content types MUST assign the relevant ContentParts, because the content should relate to or be based on the provided documents/images/data. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential information only -- AVOID verbose, lengthy, or repetitive text - be concise and direct -- Prioritize FACTS over filler text - no introductions like "In this chapter..." -- Minimize system resources: shorter content = faster processing -- Quality over quantity: precise, meaningful content rather than padding - -## CHAPTER STRUCTURE REQUIREMENTS -- Generate chapters based on USER REQUEST - analyze what structure the user wants -- Create ONLY the minimum chapters needed to cover the user's request - avoid over-structuring -- HARD LIMIT: Maximum 7 chapters per document. If the topic can be covered in fewer, prefer fewer. Combine related topics into single chapters rather than creating many small ones. -- IMPORTANT: Each chapter MUST have ALL these fields: - - id: Unique identifier (e.g., "chapter_1") - - level: Heading level (1, 2, 3, etc.) - - title: Chapter title - - contentParts: Object mapping ContentPart IDs to usage instructions (MUST assign if chapter relates to documents/data from user request) - - generationHint: Description of what content to generate (including formatting/styling requirements) - - sections: Empty array [] (REQUIRED - sections are generated in next phase) -- contentParts: {"partId": {"instruction": "..."} or {"caption": "..."} or both} - Assign ContentParts as required by CONTENT ASSIGNMENT RULE above -- The "instruction" field for each ContentPart MUST contain ALL relevant details from the USER REQUEST that apply to content extraction for this specific chapter. Include all formatting rules, data requirements, constraints, and specifications mentioned in the user request that are relevant for processing this ContentPart in this chapter. -- generationHint: Keep CONCISE but include relevant details from the USER REQUEST. Focus on WHAT to generate, not HOW to phrase it verbosely. -- The number of chapters depends on the user request - create only what is requested. Do NOT create chapters for topics without available data. - -CRITICAL: Only create chapters for CONTENT sections, not for formatting/styling requirements. Formatting/styling requirements to be included in each generationHint if needed. - -## DOCUMENT STRUCTURE - -For each document, determine: -- outputFormat: From USER REQUEST (explicit mention or infer from purpose/content type). Default: "txt". Multiple documents can have different formats. -- language: From USER REQUEST (map to ISO 639-1: de, en, fr, it...). Default: "de". Multiple documents can have different languages. -- chapters: Structure appropriately for the format (e.g., pptx=slides, docx=sections, xlsx=worksheets). Match format capabilities and constraints. - -Required JSON fields: -- metadata: {"title": "...", "language": "..."} -- documents: Array with id, title, filename, outputFormat, language, chapters[] -- chapters: Array with id, level, title, contentParts, generationHint, sections[] - -EXAMPLE STRUCTURE (for reference only - adapt to user request): -{ - "metadata": { - "title": "Document Title", - "language": "de" - }, - "documents": [{ - "id": "doc_1", - "title": "Document Title", - "filename": "document.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Chapter Title", - "contentParts": { - "extracted_part_id": { - "instruction": "Use extracted content with ALL relevant details from user request" - } - }, - "generationHint": "Detailed description including ALL relevant details from user request for this chapter", - "sections": [] - } - ] - }] -} - -CRITICAL INSTRUCTIONS: -- Generate chapters based on USER REQUEST, NOT based on the example above -- The example shows the JSON structure format, NOT the required chapters -- Create only the chapters that match the user's request -- Adapt chapter titles and structure to match the user's specific request -- Determine outputFormat and language for each document by analyzing the USER REQUEST above -- The example shows placeholders "txt" and "de" - YOU MUST REPLACE THESE with actual values determined from the USER REQUEST - -MANDATORY CONTENT ASSIGNMENT CHECK: -For each chapter, verify: -1. Does the user request mention documents/images/data? (e.g., "photo", "image", "document", "data", "based on", "about") -2. Does this chapter's generationHint, title, or purpose relate to those documents/images/data mentioned in step 1? - - Examples: "article about the photo", "text describing the image", "analysis of the document", "content based on the data" - - Even if chapter doesn't explicitly say "about the image", if user request mentions both the image AND this chapter's content type → relate them -3. If YES to both → chapter MUST have contentParts assigned (cannot be empty {}) -4. If ContentPart is "object" format and chapter needs to write ABOUT it → assign with "instruction" field, not just "caption" - -OUTPUT FORMAT: Start with { and end with }. Do NOT use markdown code fences (```json). Do NOT add explanatory text before or after the JSON. Return ONLY the JSON object itself. diff --git a/prompts/20260322-175830-163-chapter_structure_generation_response.txt b/prompts/20260322-175830-163-chapter_structure_generation_response.txt deleted file mode 100644 index 7e961297..00000000 --- a/prompts/20260322-175830-163-chapter_structure_generation_response.txt +++ /dev/null @@ -1,41 +0,0 @@ -{ - "metadata": { - "title": "Email Entwurf", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "Email Entwurf", - "filename": "email_entwurf.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Einleitung", - "contentParts": {}, - "generationHint": "Einleitung der E-Mail mit einer Begrüßung und dem Zweck der Nachricht.", - "sections": [] - }, - { - "id": "chapter_2", - "level": 1, - "title": "Hauptinhalt", - "contentParts": {}, - "generationHint": "Hauptteil der E-Mail, der den Inhalt des vorherigen Dokuments zusammenfasst oder beschreibt.", - "sections": [] - }, - { - "id": "chapter_3", - "level": 1, - "title": "Abschluss", - "contentParts": {}, - "generationHint": "Abschluss der E-Mail mit einer Zusammenfassung und einem freundlichen Abschiedsgruß.", - "sections": [] - } - ] - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175830-164-chapter_structure_generation_final_result.txt b/prompts/20260322-175830-164-chapter_structure_generation_final_result.txt deleted file mode 100644 index 7e961297..00000000 --- a/prompts/20260322-175830-164-chapter_structure_generation_final_result.txt +++ /dev/null @@ -1,41 +0,0 @@ -{ - "metadata": { - "title": "Email Entwurf", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "Email Entwurf", - "filename": "email_entwurf.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Einleitung", - "contentParts": {}, - "generationHint": "Einleitung der E-Mail mit einer Begrüßung und dem Zweck der Nachricht.", - "sections": [] - }, - { - "id": "chapter_2", - "level": 1, - "title": "Hauptinhalt", - "contentParts": {}, - "generationHint": "Hauptteil der E-Mail, der den Inhalt des vorherigen Dokuments zusammenfasst oder beschreibt.", - "sections": [] - }, - { - "id": "chapter_3", - "level": 1, - "title": "Abschluss", - "contentParts": {}, - "generationHint": "Abschluss der E-Mail mit einer Zusammenfassung und einem freundlichen Abschiedsgruß.", - "sections": [] - } - ] - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175830-165-chapter_structure_chapter_1_prompt.txt b/prompts/20260322-175830-165-chapter_structure_chapter_1_prompt.txt deleted file mode 100644 index 2a739a39..00000000 --- a/prompts/20260322-175830-165-chapter_structure_chapter_1_prompt.txt +++ /dev/null @@ -1,73 +0,0 @@ -TASK: Generate Chapter Sections Structure - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -CHAPTER: Einleitung (Level 1, ID: chapter_1) -GENERATION HINT: Einleitung der E-Mail mit einer Begrüßung und dem Zweck der Nachricht. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT sections: Focus on essential information only -- AVOID creating too many sections - combine related content where possible -- Each section should serve a clear purpose with meaningful data -- If no relevant data exists for a topic, do NOT create a section for it -- Prefer ONE comprehensive section over multiple sparse sections -- HARD LIMIT: Maximum 5 sections per chapter. Combine related subtopics into single sections to stay within this limit. - -**CRITICAL**: The chapter's generationHint above describes what content this chapter should generate. If the generationHint references documents/images/data, then EACH section that generates content for this chapter MUST assign the relevant ContentParts from AVAILABLE CONTENT PARTS below. - -NOTE: Chapter already has a heading section. Do NOT generate a heading for the chapter title. - -## SECTION INDEPENDENCE -- Each section is independent and self-contained -- One section does NOT have information about another section -- Each section must provide its own context and be understandable alone - -AVAILABLE CONTENT PARTS: - -(No content parts specified for this chapter) - -## CONTENT ASSIGNMENT RULE - CRITICAL -If AVAILABLE CONTENT PARTS are listed above, then EVERY section that generates content related to those ContentParts MUST assign them explicitly. - -**Assignment logic:** -- If section generates text content ABOUT a ContentPart → assign "extracted" format ContentPart with appropriate instruction -- If section DISPLAYS a ContentPart → assign "object" format ContentPart -- If section's generationHint or purpose relates to a ContentPart listed above → it MUST have contentPartIds assigned -- If chapter's generationHint references documents/images/data AND section generates content for that chapter → section MUST assign relevant ContentParts -- Empty contentPartIds [] are only allowed if section generates content WITHOUT referencing any available ContentParts AND WITHOUT relating to chapter's generationHint - -## ACCEPTED CONTENT TYPES FOR THIS FORMAT -The document output format (txt) accepts only the following content types: -table, bullet_list, heading, paragraph, code_block - -**CRITICAL**: Only create sections with content types from this list. Other types will fail. - -useAiCall RULE (simple): -- useAiCall: true → Content needs AI processing (extract, transform, generate, filter, summarize) -- useAiCall: false → Content can be inserted directly without changes (Format is "object" or "reference") - -RETURN JSON: -{ - "sections": [ - { - "id": "section_1", - "content_type": "table", - "contentPartIds": ["extracted_part_id"], - "generationHint": "Description of what to extract or generate", - "useAiCall": true, - "elements": [] - } - ] -} - -**MANDATORY CONTENT ASSIGNMENT CHECK:** -For each section, verify: -1. Are ContentParts listed in AVAILABLE CONTENT PARTS above? -2. Does this section's generationHint or purpose relate to those ContentParts? -3. If YES to both → section MUST have contentPartIds assigned (cannot be empty []) -4. Assign ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above - -IMAGE SECTIONS: -- For image sections, always provide a "caption" field with a descriptive caption for the image. - -Return only valid JSON. Do not include any explanatory text outside the JSON. diff --git a/prompts/20260322-175830-166-chapter_structure_chapter_2_prompt.txt b/prompts/20260322-175830-166-chapter_structure_chapter_2_prompt.txt deleted file mode 100644 index 85ac275f..00000000 --- a/prompts/20260322-175830-166-chapter_structure_chapter_2_prompt.txt +++ /dev/null @@ -1,73 +0,0 @@ -TASK: Generate Chapter Sections Structure - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -CHAPTER: Hauptinhalt (Level 1, ID: chapter_2) -GENERATION HINT: Hauptteil der E-Mail, der den Inhalt des vorherigen Dokuments zusammenfasst oder beschreibt. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT sections: Focus on essential information only -- AVOID creating too many sections - combine related content where possible -- Each section should serve a clear purpose with meaningful data -- If no relevant data exists for a topic, do NOT create a section for it -- Prefer ONE comprehensive section over multiple sparse sections -- HARD LIMIT: Maximum 5 sections per chapter. Combine related subtopics into single sections to stay within this limit. - -**CRITICAL**: The chapter's generationHint above describes what content this chapter should generate. If the generationHint references documents/images/data, then EACH section that generates content for this chapter MUST assign the relevant ContentParts from AVAILABLE CONTENT PARTS below. - -NOTE: Chapter already has a heading section. Do NOT generate a heading for the chapter title. - -## SECTION INDEPENDENCE -- Each section is independent and self-contained -- One section does NOT have information about another section -- Each section must provide its own context and be understandable alone - -AVAILABLE CONTENT PARTS: - -(No content parts specified for this chapter) - -## CONTENT ASSIGNMENT RULE - CRITICAL -If AVAILABLE CONTENT PARTS are listed above, then EVERY section that generates content related to those ContentParts MUST assign them explicitly. - -**Assignment logic:** -- If section generates text content ABOUT a ContentPart → assign "extracted" format ContentPart with appropriate instruction -- If section DISPLAYS a ContentPart → assign "object" format ContentPart -- If section's generationHint or purpose relates to a ContentPart listed above → it MUST have contentPartIds assigned -- If chapter's generationHint references documents/images/data AND section generates content for that chapter → section MUST assign relevant ContentParts -- Empty contentPartIds [] are only allowed if section generates content WITHOUT referencing any available ContentParts AND WITHOUT relating to chapter's generationHint - -## ACCEPTED CONTENT TYPES FOR THIS FORMAT -The document output format (txt) accepts only the following content types: -table, bullet_list, heading, paragraph, code_block - -**CRITICAL**: Only create sections with content types from this list. Other types will fail. - -useAiCall RULE (simple): -- useAiCall: true → Content needs AI processing (extract, transform, generate, filter, summarize) -- useAiCall: false → Content can be inserted directly without changes (Format is "object" or "reference") - -RETURN JSON: -{ - "sections": [ - { - "id": "section_1", - "content_type": "table", - "contentPartIds": ["extracted_part_id"], - "generationHint": "Description of what to extract or generate", - "useAiCall": true, - "elements": [] - } - ] -} - -**MANDATORY CONTENT ASSIGNMENT CHECK:** -For each section, verify: -1. Are ContentParts listed in AVAILABLE CONTENT PARTS above? -2. Does this section's generationHint or purpose relate to those ContentParts? -3. If YES to both → section MUST have contentPartIds assigned (cannot be empty []) -4. Assign ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above - -IMAGE SECTIONS: -- For image sections, always provide a "caption" field with a descriptive caption for the image. - -Return only valid JSON. Do not include any explanatory text outside the JSON. diff --git a/prompts/20260322-175830-167-chapter_structure_chapter_3_prompt.txt b/prompts/20260322-175830-167-chapter_structure_chapter_3_prompt.txt deleted file mode 100644 index 18b70633..00000000 --- a/prompts/20260322-175830-167-chapter_structure_chapter_3_prompt.txt +++ /dev/null @@ -1,73 +0,0 @@ -TASK: Generate Chapter Sections Structure - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -CHAPTER: Abschluss (Level 1, ID: chapter_3) -GENERATION HINT: Abschluss der E-Mail mit einer Zusammenfassung und einem freundlichen Abschiedsgruß. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT sections: Focus on essential information only -- AVOID creating too many sections - combine related content where possible -- Each section should serve a clear purpose with meaningful data -- If no relevant data exists for a topic, do NOT create a section for it -- Prefer ONE comprehensive section over multiple sparse sections -- HARD LIMIT: Maximum 5 sections per chapter. Combine related subtopics into single sections to stay within this limit. - -**CRITICAL**: The chapter's generationHint above describes what content this chapter should generate. If the generationHint references documents/images/data, then EACH section that generates content for this chapter MUST assign the relevant ContentParts from AVAILABLE CONTENT PARTS below. - -NOTE: Chapter already has a heading section. Do NOT generate a heading for the chapter title. - -## SECTION INDEPENDENCE -- Each section is independent and self-contained -- One section does NOT have information about another section -- Each section must provide its own context and be understandable alone - -AVAILABLE CONTENT PARTS: - -(No content parts specified for this chapter) - -## CONTENT ASSIGNMENT RULE - CRITICAL -If AVAILABLE CONTENT PARTS are listed above, then EVERY section that generates content related to those ContentParts MUST assign them explicitly. - -**Assignment logic:** -- If section generates text content ABOUT a ContentPart → assign "extracted" format ContentPart with appropriate instruction -- If section DISPLAYS a ContentPart → assign "object" format ContentPart -- If section's generationHint or purpose relates to a ContentPart listed above → it MUST have contentPartIds assigned -- If chapter's generationHint references documents/images/data AND section generates content for that chapter → section MUST assign relevant ContentParts -- Empty contentPartIds [] are only allowed if section generates content WITHOUT referencing any available ContentParts AND WITHOUT relating to chapter's generationHint - -## ACCEPTED CONTENT TYPES FOR THIS FORMAT -The document output format (txt) accepts only the following content types: -table, bullet_list, heading, paragraph, code_block - -**CRITICAL**: Only create sections with content types from this list. Other types will fail. - -useAiCall RULE (simple): -- useAiCall: true → Content needs AI processing (extract, transform, generate, filter, summarize) -- useAiCall: false → Content can be inserted directly without changes (Format is "object" or "reference") - -RETURN JSON: -{ - "sections": [ - { - "id": "section_1", - "content_type": "table", - "contentPartIds": ["extracted_part_id"], - "generationHint": "Description of what to extract or generate", - "useAiCall": true, - "elements": [] - } - ] -} - -**MANDATORY CONTENT ASSIGNMENT CHECK:** -For each section, verify: -1. Are ContentParts listed in AVAILABLE CONTENT PARTS above? -2. Does this section's generationHint or purpose relate to those ContentParts? -3. If YES to both → section MUST have contentPartIds assigned (cannot be empty []) -4. Assign ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above - -IMAGE SECTIONS: -- For image sections, always provide a "caption" field with a descriptive caption for the image. - -Return only valid JSON. Do not include any explanatory text outside the JSON. diff --git a/prompts/20260322-175833-168-chapter_structure_chapter_1_response.txt b/prompts/20260322-175833-168-chapter_structure_chapter_1_response.txt deleted file mode 100644 index 9f83fe0d..00000000 --- a/prompts/20260322-175833-168-chapter_structure_chapter_1_response.txt +++ /dev/null @@ -1,19 +0,0 @@ -```json -{ - "sections": [ - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Einleitung der E-Mail mit einer Begrüßung und dem Zweck der Nachricht.", - "useAiCall": true, - "elements": [ - { - "type": "text", - "content": "Sehr geehrte Damen und Herren, ich hoffe, diese Nachricht trifft Sie wohl. Ich schreibe Ihnen, um Ihnen die neuesten Informationen zu unserem Projekt mitzuteilen und um sicherzustellen, dass alle Beteiligten auf dem gleichen Stand sind. Unser Ziel ist es, die Kommunikation zu verbessern und die nächsten Schritte zu koordinieren." - } - ] - } - ] -} -``` \ No newline at end of file diff --git a/prompts/20260322-175833-169-chapter_structure_chapter_2_response.txt b/prompts/20260322-175833-169-chapter_structure_chapter_2_response.txt deleted file mode 100644 index 624eb764..00000000 --- a/prompts/20260322-175833-169-chapter_structure_chapter_2_response.txt +++ /dev/null @@ -1,39 +0,0 @@ -```json -{ - "sections": [ - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Zusammenfassung des Hauptinhalts des Dokuments", - "useAiCall": true, - "elements": [ - "Der Hauptinhalt der E-Mail fasst die wesentlichen Punkte des vorherigen Dokuments zusammen. Es werden die wichtigsten Informationen und Erkenntnisse präsentiert, um dem Empfänger einen klaren Überblick zu verschaffen. Dabei wird auf die zentralen Themen eingegangen und relevante Details hervorgehoben, um die Kernaussagen verständlich zu machen." - ] - }, - { - "id": "section_2", - "content_type": "bullet_list", - "contentPartIds": [], - "generationHint": "Auflistung der wichtigsten Punkte des Dokuments", - "useAiCall": true, - "elements": [ - "Hauptthema des Dokuments", - "Wichtige Erkenntnisse und Schlussfolgerungen", - "Relevante Daten und Statistiken", - "Empfehlungen für weitere Schritte" - ] - }, - { - "id": "section_3", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Beschreibung der Zielsetzung des Dokuments", - "useAiCall": true, - "elements": [ - "Das Dokument zielt darauf ab, die Leser über die neuesten Entwicklungen und Erkenntnisse in einem bestimmten Bereich zu informieren. Es soll als Grundlage für fundierte Entscheidungen dienen und bietet eine detaillierte Analyse der behandelten Themen." - ] - } - ] -} -``` \ No newline at end of file diff --git a/prompts/20260322-175833-170-chapter_structure_chapter_3_response.txt b/prompts/20260322-175833-170-chapter_structure_chapter_3_response.txt deleted file mode 100644 index 057651ac..00000000 --- a/prompts/20260322-175833-170-chapter_structure_chapter_3_response.txt +++ /dev/null @@ -1,26 +0,0 @@ -```json -{ - "sections": [ - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Zusammenfassung der E-Mail-Inhalte", - "useAiCall": true, - "elements": [ - "In dieser E-Mail haben wir die wichtigsten Punkte unserer Diskussion zusammengefasst. Wir haben die aktuellen Fortschritte, zukünftige Schritte und alle offenen Fragen besprochen. Bitte zögern Sie nicht, sich bei weiteren Fragen oder Anmerkungen an uns zu wenden." - ] - }, - { - "id": "section_2", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Freundlicher Abschiedsgruß", - "useAiCall": true, - "elements": [ - "Vielen Dank für Ihre Aufmerksamkeit und Unterstützung. Wir freuen uns auf die weitere Zusammenarbeit und wünschen Ihnen einen angenehmen Tag. Mit freundlichen Grüßen, [Ihr Name]" - ] - } - ] -} -``` \ No newline at end of file diff --git a/prompts/20260322-175833-171-chapter_1_section_section_1_prompt.txt b/prompts/20260322-175833-171-chapter_1_section_section_1_prompt.txt deleted file mode 100644 index 45eed644..00000000 --- a/prompts/20260322-175833-171-chapter_1_section_section_1_prompt.txt +++ /dev/null @@ -1,56 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_1 -- Content Type: paragraph -- Generation Hint: Einleitung der E-Mail mit einer Begrüßung und dem Zweck der Nachricht. -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Following sections: -- section_1 (paragraph): -- section_2 (bullet_list): - diff --git a/prompts/20260322-175833-172-chapter_2_section_section_1_prompt.txt b/prompts/20260322-175833-172-chapter_2_section_section_1_prompt.txt deleted file mode 100644 index 0a67813d..00000000 --- a/prompts/20260322-175833-172-chapter_2_section_section_1_prompt.txt +++ /dev/null @@ -1,56 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_1 -- Content Type: paragraph -- Generation Hint: Zusammenfassung des Hauptinhalts des Dokuments -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Following sections: -- section_1 (paragraph): -- section_2 (bullet_list): - diff --git a/prompts/20260322-175834-173-chapter_2_section_section_2_prompt.txt b/prompts/20260322-175834-173-chapter_2_section_section_2_prompt.txt deleted file mode 100644 index 79b99962..00000000 --- a/prompts/20260322-175834-173-chapter_2_section_section_2_prompt.txt +++ /dev/null @@ -1,59 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_2 -- Content Type: bullet_list -- Generation Hint: Auflistung der wichtigsten Punkte des Dokuments -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (bullet_list). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "bullet_list", - "content": {{"items": ["Item 1", "Item 2", "Item 3"]}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): - -Following sections: -- section_2 (bullet_list): -- section_3 (paragraph): - diff --git a/prompts/20260322-175834-174-chapter_2_section_section_3_prompt.txt b/prompts/20260322-175834-174-chapter_2_section_section_3_prompt.txt deleted file mode 100644 index efdabf3d..00000000 --- a/prompts/20260322-175834-174-chapter_2_section_section_3_prompt.txt +++ /dev/null @@ -1,60 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_3 -- Content Type: paragraph -- Generation Hint: Beschreibung der Zielsetzung des Dokuments -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): -- section_1 (paragraph): - -Following sections: -- section_3 (paragraph): -- section_1 (paragraph): - diff --git a/prompts/20260322-175834-175-chapter_3_section_section_1_prompt.txt b/prompts/20260322-175834-175-chapter_3_section_section_1_prompt.txt deleted file mode 100644 index 597695ff..00000000 --- a/prompts/20260322-175834-175-chapter_3_section_section_1_prompt.txt +++ /dev/null @@ -1,56 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_1 -- Content Type: paragraph -- Generation Hint: Zusammenfassung der E-Mail-Inhalte -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Following sections: -- section_1 (paragraph): -- section_2 (bullet_list): - diff --git a/prompts/20260322-175835-176-chapter_1_section_section_1_response.txt b/prompts/20260322-175835-176-chapter_1_section_section_1_response.txt deleted file mode 100644 index a18abecb..00000000 --- a/prompts/20260322-175835-176-chapter_1_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Sehr geehrte Damen und Herren, ich hoffe, diese Nachricht trifft Sie wohl. Ich schreibe Ihnen, um den Zweck unserer bevorstehenden Zusammenarbeit zu erläutern und die nächsten Schritte zu besprechen. Bitte lassen Sie mich wissen, wenn Sie weitere Informationen benötigen oder Fragen haben." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175835-177-chapter_1_section_section_1_response.txt b/prompts/20260322-175835-177-chapter_1_section_section_1_response.txt deleted file mode 100644 index a18abecb..00000000 --- a/prompts/20260322-175835-177-chapter_1_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Sehr geehrte Damen und Herren, ich hoffe, diese Nachricht trifft Sie wohl. Ich schreibe Ihnen, um den Zweck unserer bevorstehenden Zusammenarbeit zu erläutern und die nächsten Schritte zu besprechen. Bitte lassen Sie mich wissen, wenn Sie weitere Informationen benötigen oder Fragen haben." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175835-178-chapter_3_section_section_2_prompt.txt b/prompts/20260322-175835-178-chapter_3_section_section_2_prompt.txt deleted file mode 100644 index 21b7d095..00000000 --- a/prompts/20260322-175835-178-chapter_3_section_section_2_prompt.txt +++ /dev/null @@ -1,59 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_2 -- Content Type: paragraph -- Generation Hint: Freundlicher Abschiedsgruß -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): - -Following sections: -- section_2 (bullet_list): -- section_3 (paragraph): - diff --git a/prompts/20260322-175835-179-chapter_3_section_section_1_response.txt b/prompts/20260322-175835-179-chapter_3_section_section_1_response.txt deleted file mode 100644 index 9a553567..00000000 --- a/prompts/20260322-175835-179-chapter_3_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Die E-Mail fasst die wichtigsten Punkte zusammen, die im vorherigen Dokument behandelt wurden. Es wird auf die wesentlichen Themen eingegangen, die für den Empfänger von Bedeutung sind. Die E-Mail enthält prägnante Informationen, die den Leser über die Hauptinhalte informieren, ohne unnötige Details oder Wiederholungen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175835-180-chapter_3_section_section_1_response.txt b/prompts/20260322-175835-180-chapter_3_section_section_1_response.txt deleted file mode 100644 index 9a553567..00000000 --- a/prompts/20260322-175835-180-chapter_3_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Die E-Mail fasst die wichtigsten Punkte zusammen, die im vorherigen Dokument behandelt wurden. Es wird auf die wesentlichen Themen eingegangen, die für den Empfänger von Bedeutung sind. Die E-Mail enthält prägnante Informationen, die den Leser über die Hauptinhalte informieren, ohne unnötige Details oder Wiederholungen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175836-181-chapter_2_section_section_2_response.txt b/prompts/20260322-175836-181-chapter_2_section_section_2_response.txt deleted file mode 100644 index 1f822513..00000000 --- a/prompts/20260322-175836-181-chapter_2_section_section_2_response.txt +++ /dev/null @@ -1,16 +0,0 @@ -{ - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Kernpunkte des Dokuments zusammengefasst.", - "Wichtige Themen und Diskussionen hervorgehoben.", - "Relevante Daten und Statistiken präsentiert.", - "Schlussfolgerungen und Empfehlungen gegeben.", - "Nächste Schritte und Aktionspunkte definiert." - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175836-182-chapter_2_section_section_2_response.txt b/prompts/20260322-175836-182-chapter_2_section_section_2_response.txt deleted file mode 100644 index 1f822513..00000000 --- a/prompts/20260322-175836-182-chapter_2_section_section_2_response.txt +++ /dev/null @@ -1,16 +0,0 @@ -{ - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Kernpunkte des Dokuments zusammengefasst.", - "Wichtige Themen und Diskussionen hervorgehoben.", - "Relevante Daten und Statistiken präsentiert.", - "Schlussfolgerungen und Empfehlungen gegeben.", - "Nächste Schritte und Aktionspunkte definiert." - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175836-183-chapter_2_section_section_1_response.txt b/prompts/20260322-175836-183-chapter_2_section_section_1_response.txt deleted file mode 100644 index 926ea283..00000000 --- a/prompts/20260322-175836-183-chapter_2_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Das Dokument behandelt die wesentlichen Punkte eines Projekts, einschließlich der Ziele, des Zeitplans und der erwarteten Ergebnisse. Es beschreibt die Verantwortlichkeiten der Teammitglieder und die Ressourcen, die zur Verfügung stehen. Zudem werden potenzielle Risiken und deren Managementstrategien erläutert. Abschließend wird auf die Bedeutung der Kommunikation und der regelmäßigen Berichterstattung hingewiesen, um den Fortschritt zu überwachen und Anpassungen vorzunehmen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175836-184-chapter_2_section_section_1_response.txt b/prompts/20260322-175836-184-chapter_2_section_section_1_response.txt deleted file mode 100644 index 926ea283..00000000 --- a/prompts/20260322-175836-184-chapter_2_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Das Dokument behandelt die wesentlichen Punkte eines Projekts, einschließlich der Ziele, des Zeitplans und der erwarteten Ergebnisse. Es beschreibt die Verantwortlichkeiten der Teammitglieder und die Ressourcen, die zur Verfügung stehen. Zudem werden potenzielle Risiken und deren Managementstrategien erläutert. Abschließend wird auf die Bedeutung der Kommunikation und der regelmäßigen Berichterstattung hingewiesen, um den Fortschritt zu überwachen und Anpassungen vorzunehmen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175836-185-chapter_2_section_section_3_response.txt b/prompts/20260322-175836-185-chapter_2_section_section_3_response.txt deleted file mode 100644 index cdcc66ba..00000000 --- a/prompts/20260322-175836-185-chapter_2_section_section_3_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Dieses Dokument zielt darauf ab, die wesentlichen Ziele und Absichten klar zu definieren. Es dient als Leitfaden für die Umsetzung spezifischer Maßnahmen und stellt sicher, dass alle Beteiligten ein gemeinsames Verständnis der angestrebten Ergebnisse haben. Die Zielsetzung umfasst die Festlegung von Prioritäten, die Identifizierung von Herausforderungen und die Entwicklung von Strategien zur Erreichung der gesetzten Ziele. Durch die klare Definition der Zielsetzung wird die Effizienz gesteigert und die Zusammenarbeit gefördert." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175836-186-chapter_2_section_section_3_response.txt b/prompts/20260322-175836-186-chapter_2_section_section_3_response.txt deleted file mode 100644 index cdcc66ba..00000000 --- a/prompts/20260322-175836-186-chapter_2_section_section_3_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Dieses Dokument zielt darauf ab, die wesentlichen Ziele und Absichten klar zu definieren. Es dient als Leitfaden für die Umsetzung spezifischer Maßnahmen und stellt sicher, dass alle Beteiligten ein gemeinsames Verständnis der angestrebten Ergebnisse haben. Die Zielsetzung umfasst die Festlegung von Prioritäten, die Identifizierung von Herausforderungen und die Entwicklung von Strategien zur Erreichung der gesetzten Ziele. Durch die klare Definition der Zielsetzung wird die Effizienz gesteigert und die Zusammenarbeit gefördert." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175836-187-chapter_3_section_section_2_response.txt b/prompts/20260322-175836-187-chapter_3_section_section_2_response.txt deleted file mode 100644 index cb7f0263..00000000 --- a/prompts/20260322-175836-187-chapter_3_section_section_2_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Vielen Dank für Ihre Zusammenarbeit und Unterstützung. Es war eine Freude, mit Ihnen zu arbeiten. Ich wünsche Ihnen alles Gute für die Zukunft und hoffe, dass sich unsere Wege bald wieder kreuzen. Bleiben Sie gesund und erfolgreich!" - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175836-188-chapter_3_section_section_2_response.txt b/prompts/20260322-175836-188-chapter_3_section_section_2_response.txt deleted file mode 100644 index cb7f0263..00000000 --- a/prompts/20260322-175836-188-chapter_3_section_section_2_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Vielen Dank für Ihre Zusammenarbeit und Unterstützung. Es war eine Freude, mit Ihnen zu arbeiten. Ich wünsche Ihnen alles Gute für die Zukunft und hoffe, dass sich unsere Wege bald wieder kreuzen. Bleiben Sie gesund und erfolgreich!" - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175836-189-document_generation_response.txt b/prompts/20260322-175836-189-document_generation_response.txt deleted file mode 100644 index 91b15e46..00000000 --- a/prompts/20260322-175836-189-document_generation_response.txt +++ /dev/null @@ -1,155 +0,0 @@ -{ - "metadata": { - "title": "Email Entwurf", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "Email Entwurf", - "filename": "email_entwurf.txt", - "outputFormat": "txt", - "language": "de", - "sections": [ - { - "id": "chapter_1_heading", - "content_type": "heading", - "elements": [ - { - "type": "heading", - "content": { - "text": "Einleitung", - "level": 1 - } - } - ] - }, - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Einleitung der E-Mail mit einer Begrüßung und dem Zweck der Nachricht.", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Sehr geehrte Damen und Herren, ich hoffe, diese Nachricht trifft Sie wohl. Ich schreibe Ihnen, um den Zweck unserer bevorstehenden Zusammenarbeit zu erläutern und die nächsten Schritte zu besprechen. Bitte lassen Sie mich wissen, wenn Sie weitere Informationen benötigen oder Fragen haben." - } - } - ] - }, - { - "id": "chapter_2_heading", - "content_type": "heading", - "elements": [ - { - "type": "heading", - "content": { - "text": "Hauptinhalt", - "level": 1 - } - } - ] - }, - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Zusammenfassung des Hauptinhalts des Dokuments", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Das Dokument behandelt die wesentlichen Punkte eines Projekts, einschließlich der Ziele, des Zeitplans und der erwarteten Ergebnisse. Es beschreibt die Verantwortlichkeiten der Teammitglieder und die Ressourcen, die zur Verfügung stehen. Zudem werden potenzielle Risiken und deren Managementstrategien erläutert. Abschließend wird auf die Bedeutung der Kommunikation und der regelmäßigen Berichterstattung hingewiesen, um den Fortschritt zu überwachen und Anpassungen vorzunehmen." - } - } - ] - }, - { - "id": "section_2", - "content_type": "bullet_list", - "contentPartIds": [], - "generationHint": "Auflistung der wichtigsten Punkte des Dokuments", - "useAiCall": true, - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Kernpunkte des Dokuments zusammengefasst.", - "Wichtige Themen und Diskussionen hervorgehoben.", - "Relevante Daten und Statistiken präsentiert.", - "Schlussfolgerungen und Empfehlungen gegeben.", - "Nächste Schritte und Aktionspunkte definiert." - ] - } - } - ] - }, - { - "id": "section_3", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Beschreibung der Zielsetzung des Dokuments", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Dieses Dokument zielt darauf ab, die wesentlichen Ziele und Absichten klar zu definieren. Es dient als Leitfaden für die Umsetzung spezifischer Maßnahmen und stellt sicher, dass alle Beteiligten ein gemeinsames Verständnis der angestrebten Ergebnisse haben. Die Zielsetzung umfasst die Festlegung von Prioritäten, die Identifizierung von Herausforderungen und die Entwicklung von Strategien zur Erreichung der gesetzten Ziele. Durch die klare Definition der Zielsetzung wird die Effizienz gesteigert und die Zusammenarbeit gefördert." - } - } - ] - }, - { - "id": "chapter_3_heading", - "content_type": "heading", - "elements": [ - { - "type": "heading", - "content": { - "text": "Abschluss", - "level": 1 - } - } - ] - }, - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Zusammenfassung der E-Mail-Inhalte", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Die E-Mail fasst die wichtigsten Punkte zusammen, die im vorherigen Dokument behandelt wurden. Es wird auf die wesentlichen Themen eingegangen, die für den Empfänger von Bedeutung sind. Die E-Mail enthält prägnante Informationen, die den Leser über die Hauptinhalte informieren, ohne unnötige Details oder Wiederholungen." - } - } - ] - }, - { - "id": "section_2", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Freundlicher Abschiedsgruß", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Vielen Dank für Ihre Zusammenarbeit und Unterstützung. Es war eine Freude, mit Ihnen zu arbeiten. Ich wünsche Ihnen alles Gute für die Zukunft und hoffe, dass sich unsere Wege bald wieder kreuzen. Bleiben Sie gesund und erfolgreich!" - } - } - ] - } - ], - "metadata": { - "outputStyle": "document" - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-175837-190-email_composition_prompt.txt b/prompts/20260322-175837-190-email_composition_prompt.txt deleted file mode 100644 index 7fcced39..00000000 --- a/prompts/20260322-175837-190-email_composition_prompt.txt +++ /dev/null @@ -1,22 +0,0 @@ -Compose an email based on this context: -------- -Email Entwurf\n=============\n\nEinleitung\n==========\n\nSehr geehrte Damen und Herren, ich hoffe, diese Nachricht trifft Sie wohl. Ich schreibe Ihnen, um den Zweck unserer bevorstehenden Zusammenarbeit zu erläutern und die nächsten Schritte zu besprechen. Bitte lassen Sie mich wissen, wenn Sie weitere Informationen benötigen oder Fragen haben.\n\nHauptinhalt\n===========\n\nDas Dokument behandelt die wesentlichen Punkte eines Projekts, einschließlich der Ziele, des Zeitplans und der erwarteten Ergebnisse. Es beschreibt die Verantwortlichkeiten der Teammitglieder und die Ressourcen, die zur Verfügung stehen. Zudem werden potenzielle Risiken und deren Managementstrategien erläutert. Abschließend wird auf die Bedeutung der Kommunikation und der regelmäßigen Berichterstattung hingewiesen, um den Fortschritt zu überwachen und Anpassungen vorzunehmen.\n\n- Kernpunkte des Dokuments zusammengefasst.\n- Wichtige Themen und Diskussionen hervorgehoben.\n- Relevante Daten und Statistiken präsentiert.\n- Schlussfolgerungen und Empfehlungen gegeben.\n- Nächste Schritte und Aktionspunkte definiert.\n\nDieses Dokument zielt darauf ab, die wesentlichen Ziele und Absichten klar zu definieren. Es dient als Leitfaden für die Umsetzung spezifischer Maßnahmen und stellt sicher, dass alle Beteiligten ein gemeinsames Verständnis der angestrebten Ergebnisse haben. Die Zielsetzung umfasst die Festlegung von Prioritäten, die Identifizierung von Herausforderungen und die Entwicklung von Strategien zur Erreichung der gesetzten Ziele. Durch die klare Definition der Zielsetzung wird die Effizienz gesteigert und die Zusammenarbeit gefördert.\n\nAbschluss\n=========\n\nDie E-Mail fasst die wichtigsten Punkte zusammen, die im vorherigen Dokument behandelt wurden. Es wird auf die wesentlichen Themen eingegangen, die für den Empfänger von Bedeutung sind. Die E-Mail enthält prägnante Informationen, die den Leser über die Hauptinhalte informieren, ohne unnötige Details oder Wiederholungen.\n\nVielen Dank für Ihre Zusammenarbeit und Unterstützung. Es war eine Freude, mit Ihnen zu arbeiten. Ich wünsche Ihnen alles Gute für die Zukunft und hoffe, dass sich unsere Wege bald wieder kreuzen. Bleiben Sie gesund und erfolgreich!\n\n\nGenerated: 2026-03-22 17:58:36 UTC -------- - -Recipients: (not specified - this is a draft) -Style: business -Max length: 1000 characters - -Available_Document_References: - - (no documents) - -Based on the context, decide which documents to attach. - -CRITICAL: Use EXACT document references from Available_Document_References above. For individual documents: ALWAYS use docItem:: format (include filename) - -Return JSON: -{ - "subject": "subject line", - "body": "email body (HTML allowed)", - "attachments": ["docItem::"] -} diff --git a/prompts/20260322-175839-191-email_composition_response.txt b/prompts/20260322-175839-191-email_composition_response.txt deleted file mode 100644 index 6ce6ef86..00000000 --- a/prompts/20260322-175839-191-email_composition_response.txt +++ /dev/null @@ -1,7 +0,0 @@ -```json -{ - "subject": "Zusammenarbeit und nächste Schritte", - "body": "Sehr geehrte Damen und Herren,

ich hoffe, diese Nachricht trifft Sie wohl. Ich schreibe Ihnen, um den Zweck unserer bevorstehenden Zusammenarbeit zu erläutern und die nächsten Schritte zu besprechen. Bitte lassen Sie mich wissen, wenn Sie weitere Informationen benötigen oder Fragen haben.

Das Dokument behandelt die wesentlichen Punkte eines Projekts, einschließlich der Ziele, des Zeitplans und der erwarteten Ergebnisse. Es beschreibt die Verantwortlichkeiten der Teammitglieder und die Ressourcen, die zur Verfügung stehen. Zudem werden potenzielle Risiken und deren Managementstrategien erläutert. Abschließend wird auf die Bedeutung der Kommunikation und der regelmäßigen Berichterstattung hingewiesen, um den Fortschritt zu überwachen und Anpassungen vorzunehmen.

Vielen Dank für Ihre Zusammenarbeit und Unterstützung. Es war eine Freude, mit Ihnen zu arbeiten. Ich wünsche Ihnen alles Gute für die Zukunft und hoffe, dass sich unsere Wege bald wieder kreuzen. Bleiben Sie gesund und erfolgreich!

Mit freundlichen Grüßen,
[Ihr Name]", - "attachments": [] -} -``` \ No newline at end of file diff --git a/prompts/20260322-180140-192-chapter_structure_generation_prompt.txt b/prompts/20260322-180140-192-chapter_structure_generation_prompt.txt deleted file mode 100644 index 49ba0ee5..00000000 --- a/prompts/20260322-180140-192-chapter_structure_generation_prompt.txt +++ /dev/null @@ -1,119 +0,0 @@ -# TASK: Plan Document Structure (Documents + Chapters) - -This is a STRUCTURE PLANNING task. You define which documents to create and which chapters each document will have. -Chapter CONTENT will be generated in a later step - here you only plan the STRUCTURE and assign content references. -Return EXACTLY ONE complete JSON object. Do not generate multiple JSON objects, alternatives, or variations. Do not use separators like "---" between JSON objects. - -## USER REQUEST (for context) -``` -entwirf eine email mit dem inhalt des files davor -``` - -## AVAILABLE CONTENT PARTS - -(No content parts available) - -## CONTENT ASSIGNMENT RULE - -CRITICAL: Every chapter MUST have contentParts assigned if it relates to documents/images/data from the user request. -If the user request mentions documents/images/data, then EVERY chapter that generates content related to those references MUST assign the relevant ContentParts explicitly. - -Assignment logic: -- If chapter DISPLAYS a document/image → assign "object" format ContentPart with "caption" -- If chapter generates text content ABOUT a document/image/data → assign ContentPart with "instruction": - - Prefer "extracted" format if available (contains analyzed/extracted content) - - If only "object" format is available, use "object" format with "instruction" (to write ABOUT the image/document) -- If chapter's generationHint or purpose relates to a document/image/data mentioned in user request → it MUST have ContentParts assigned -- Multiple chapters might assign the same ContentPart (e.g., one chapter displays image, another writes about it) -- Use ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above -- Empty contentParts are only allowed if chapter generates content WITHOUT referencing any documents/images/data from the user request - -CRITICAL RULE: If the user request mentions BOTH: - a) Documents/images/data (listed in AVAILABLE CONTENT PARTS above), AND - b) Generic content types (article text, main content, body text, etc.) -Then chapters that generate those generic content types MUST assign the relevant ContentParts, because the content should relate to or be based on the provided documents/images/data. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential information only -- AVOID verbose, lengthy, or repetitive text - be concise and direct -- Prioritize FACTS over filler text - no introductions like "In this chapter..." -- Minimize system resources: shorter content = faster processing -- Quality over quantity: precise, meaningful content rather than padding - -## CHAPTER STRUCTURE REQUIREMENTS -- Generate chapters based on USER REQUEST - analyze what structure the user wants -- Create ONLY the minimum chapters needed to cover the user's request - avoid over-structuring -- HARD LIMIT: Maximum 7 chapters per document. If the topic can be covered in fewer, prefer fewer. Combine related topics into single chapters rather than creating many small ones. -- IMPORTANT: Each chapter MUST have ALL these fields: - - id: Unique identifier (e.g., "chapter_1") - - level: Heading level (1, 2, 3, etc.) - - title: Chapter title - - contentParts: Object mapping ContentPart IDs to usage instructions (MUST assign if chapter relates to documents/data from user request) - - generationHint: Description of what content to generate (including formatting/styling requirements) - - sections: Empty array [] (REQUIRED - sections are generated in next phase) -- contentParts: {"partId": {"instruction": "..."} or {"caption": "..."} or both} - Assign ContentParts as required by CONTENT ASSIGNMENT RULE above -- The "instruction" field for each ContentPart MUST contain ALL relevant details from the USER REQUEST that apply to content extraction for this specific chapter. Include all formatting rules, data requirements, constraints, and specifications mentioned in the user request that are relevant for processing this ContentPart in this chapter. -- generationHint: Keep CONCISE but include relevant details from the USER REQUEST. Focus on WHAT to generate, not HOW to phrase it verbosely. -- The number of chapters depends on the user request - create only what is requested. Do NOT create chapters for topics without available data. - -CRITICAL: Only create chapters for CONTENT sections, not for formatting/styling requirements. Formatting/styling requirements to be included in each generationHint if needed. - -## DOCUMENT STRUCTURE - -For each document, determine: -- outputFormat: From USER REQUEST (explicit mention or infer from purpose/content type). Default: "txt". Multiple documents can have different formats. -- language: From USER REQUEST (map to ISO 639-1: de, en, fr, it...). Default: "de". Multiple documents can have different languages. -- chapters: Structure appropriately for the format (e.g., pptx=slides, docx=sections, xlsx=worksheets). Match format capabilities and constraints. - -Required JSON fields: -- metadata: {"title": "...", "language": "..."} -- documents: Array with id, title, filename, outputFormat, language, chapters[] -- chapters: Array with id, level, title, contentParts, generationHint, sections[] - -EXAMPLE STRUCTURE (for reference only - adapt to user request): -{ - "metadata": { - "title": "Document Title", - "language": "de" - }, - "documents": [{ - "id": "doc_1", - "title": "Document Title", - "filename": "document.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Chapter Title", - "contentParts": { - "extracted_part_id": { - "instruction": "Use extracted content with ALL relevant details from user request" - } - }, - "generationHint": "Detailed description including ALL relevant details from user request for this chapter", - "sections": [] - } - ] - }] -} - -CRITICAL INSTRUCTIONS: -- Generate chapters based on USER REQUEST, NOT based on the example above -- The example shows the JSON structure format, NOT the required chapters -- Create only the chapters that match the user's request -- Adapt chapter titles and structure to match the user's specific request -- Determine outputFormat and language for each document by analyzing the USER REQUEST above -- The example shows placeholders "txt" and "de" - YOU MUST REPLACE THESE with actual values determined from the USER REQUEST - -MANDATORY CONTENT ASSIGNMENT CHECK: -For each chapter, verify: -1. Does the user request mention documents/images/data? (e.g., "photo", "image", "document", "data", "based on", "about") -2. Does this chapter's generationHint, title, or purpose relate to those documents/images/data mentioned in step 1? - - Examples: "article about the photo", "text describing the image", "analysis of the document", "content based on the data" - - Even if chapter doesn't explicitly say "about the image", if user request mentions both the image AND this chapter's content type → relate them -3. If YES to both → chapter MUST have contentParts assigned (cannot be empty {}) -4. If ContentPart is "object" format and chapter needs to write ABOUT it → assign with "instruction" field, not just "caption" - -OUTPUT FORMAT: Start with { and end with }. Do NOT use markdown code fences (```json). Do NOT add explanatory text before or after the JSON. Return ONLY the JSON object itself. diff --git a/prompts/20260322-180143-193-chapter_structure_generation_response.txt b/prompts/20260322-180143-193-chapter_structure_generation_response.txt deleted file mode 100644 index ef0b47fd..00000000 --- a/prompts/20260322-180143-193-chapter_structure_generation_response.txt +++ /dev/null @@ -1,41 +0,0 @@ -{ - "metadata": { - "title": "Email Entwurf", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "Email Entwurf", - "filename": "email_entwurf.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Einleitung", - "contentParts": {}, - "generationHint": "Einleitung der E-Mail, die den Kontext und den Zweck der Nachricht beschreibt.", - "sections": [] - }, - { - "id": "chapter_2", - "level": 1, - "title": "Hauptteil", - "contentParts": {}, - "generationHint": "Hauptinhalt der E-Mail, der die wichtigsten Informationen und Details enthält.", - "sections": [] - }, - { - "id": "chapter_3", - "level": 1, - "title": "Schluss", - "contentParts": {}, - "generationHint": "Abschluss der E-Mail mit einer Zusammenfassung oder einem Aufruf zum Handeln.", - "sections": [] - } - ] - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180143-194-chapter_structure_generation_final_result.txt b/prompts/20260322-180143-194-chapter_structure_generation_final_result.txt deleted file mode 100644 index ef0b47fd..00000000 --- a/prompts/20260322-180143-194-chapter_structure_generation_final_result.txt +++ /dev/null @@ -1,41 +0,0 @@ -{ - "metadata": { - "title": "Email Entwurf", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "Email Entwurf", - "filename": "email_entwurf.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Einleitung", - "contentParts": {}, - "generationHint": "Einleitung der E-Mail, die den Kontext und den Zweck der Nachricht beschreibt.", - "sections": [] - }, - { - "id": "chapter_2", - "level": 1, - "title": "Hauptteil", - "contentParts": {}, - "generationHint": "Hauptinhalt der E-Mail, der die wichtigsten Informationen und Details enthält.", - "sections": [] - }, - { - "id": "chapter_3", - "level": 1, - "title": "Schluss", - "contentParts": {}, - "generationHint": "Abschluss der E-Mail mit einer Zusammenfassung oder einem Aufruf zum Handeln.", - "sections": [] - } - ] - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180143-195-chapter_structure_chapter_1_prompt.txt b/prompts/20260322-180143-195-chapter_structure_chapter_1_prompt.txt deleted file mode 100644 index 83eb5724..00000000 --- a/prompts/20260322-180143-195-chapter_structure_chapter_1_prompt.txt +++ /dev/null @@ -1,73 +0,0 @@ -TASK: Generate Chapter Sections Structure - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -CHAPTER: Einleitung (Level 1, ID: chapter_1) -GENERATION HINT: Einleitung der E-Mail, die den Kontext und den Zweck der Nachricht beschreibt. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT sections: Focus on essential information only -- AVOID creating too many sections - combine related content where possible -- Each section should serve a clear purpose with meaningful data -- If no relevant data exists for a topic, do NOT create a section for it -- Prefer ONE comprehensive section over multiple sparse sections -- HARD LIMIT: Maximum 5 sections per chapter. Combine related subtopics into single sections to stay within this limit. - -**CRITICAL**: The chapter's generationHint above describes what content this chapter should generate. If the generationHint references documents/images/data, then EACH section that generates content for this chapter MUST assign the relevant ContentParts from AVAILABLE CONTENT PARTS below. - -NOTE: Chapter already has a heading section. Do NOT generate a heading for the chapter title. - -## SECTION INDEPENDENCE -- Each section is independent and self-contained -- One section does NOT have information about another section -- Each section must provide its own context and be understandable alone - -AVAILABLE CONTENT PARTS: - -(No content parts specified for this chapter) - -## CONTENT ASSIGNMENT RULE - CRITICAL -If AVAILABLE CONTENT PARTS are listed above, then EVERY section that generates content related to those ContentParts MUST assign them explicitly. - -**Assignment logic:** -- If section generates text content ABOUT a ContentPart → assign "extracted" format ContentPart with appropriate instruction -- If section DISPLAYS a ContentPart → assign "object" format ContentPart -- If section's generationHint or purpose relates to a ContentPart listed above → it MUST have contentPartIds assigned -- If chapter's generationHint references documents/images/data AND section generates content for that chapter → section MUST assign relevant ContentParts -- Empty contentPartIds [] are only allowed if section generates content WITHOUT referencing any available ContentParts AND WITHOUT relating to chapter's generationHint - -## ACCEPTED CONTENT TYPES FOR THIS FORMAT -The document output format (txt) accepts only the following content types: -table, bullet_list, heading, paragraph, code_block - -**CRITICAL**: Only create sections with content types from this list. Other types will fail. - -useAiCall RULE (simple): -- useAiCall: true → Content needs AI processing (extract, transform, generate, filter, summarize) -- useAiCall: false → Content can be inserted directly without changes (Format is "object" or "reference") - -RETURN JSON: -{ - "sections": [ - { - "id": "section_1", - "content_type": "table", - "contentPartIds": ["extracted_part_id"], - "generationHint": "Description of what to extract or generate", - "useAiCall": true, - "elements": [] - } - ] -} - -**MANDATORY CONTENT ASSIGNMENT CHECK:** -For each section, verify: -1. Are ContentParts listed in AVAILABLE CONTENT PARTS above? -2. Does this section's generationHint or purpose relate to those ContentParts? -3. If YES to both → section MUST have contentPartIds assigned (cannot be empty []) -4. Assign ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above - -IMAGE SECTIONS: -- For image sections, always provide a "caption" field with a descriptive caption for the image. - -Return only valid JSON. Do not include any explanatory text outside the JSON. diff --git a/prompts/20260322-180143-196-chapter_structure_chapter_2_prompt.txt b/prompts/20260322-180143-196-chapter_structure_chapter_2_prompt.txt deleted file mode 100644 index 106878f8..00000000 --- a/prompts/20260322-180143-196-chapter_structure_chapter_2_prompt.txt +++ /dev/null @@ -1,73 +0,0 @@ -TASK: Generate Chapter Sections Structure - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -CHAPTER: Hauptteil (Level 1, ID: chapter_2) -GENERATION HINT: Hauptinhalt der E-Mail, der die wichtigsten Informationen und Details enthält. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT sections: Focus on essential information only -- AVOID creating too many sections - combine related content where possible -- Each section should serve a clear purpose with meaningful data -- If no relevant data exists for a topic, do NOT create a section for it -- Prefer ONE comprehensive section over multiple sparse sections -- HARD LIMIT: Maximum 5 sections per chapter. Combine related subtopics into single sections to stay within this limit. - -**CRITICAL**: The chapter's generationHint above describes what content this chapter should generate. If the generationHint references documents/images/data, then EACH section that generates content for this chapter MUST assign the relevant ContentParts from AVAILABLE CONTENT PARTS below. - -NOTE: Chapter already has a heading section. Do NOT generate a heading for the chapter title. - -## SECTION INDEPENDENCE -- Each section is independent and self-contained -- One section does NOT have information about another section -- Each section must provide its own context and be understandable alone - -AVAILABLE CONTENT PARTS: - -(No content parts specified for this chapter) - -## CONTENT ASSIGNMENT RULE - CRITICAL -If AVAILABLE CONTENT PARTS are listed above, then EVERY section that generates content related to those ContentParts MUST assign them explicitly. - -**Assignment logic:** -- If section generates text content ABOUT a ContentPart → assign "extracted" format ContentPart with appropriate instruction -- If section DISPLAYS a ContentPart → assign "object" format ContentPart -- If section's generationHint or purpose relates to a ContentPart listed above → it MUST have contentPartIds assigned -- If chapter's generationHint references documents/images/data AND section generates content for that chapter → section MUST assign relevant ContentParts -- Empty contentPartIds [] are only allowed if section generates content WITHOUT referencing any available ContentParts AND WITHOUT relating to chapter's generationHint - -## ACCEPTED CONTENT TYPES FOR THIS FORMAT -The document output format (txt) accepts only the following content types: -table, bullet_list, heading, paragraph, code_block - -**CRITICAL**: Only create sections with content types from this list. Other types will fail. - -useAiCall RULE (simple): -- useAiCall: true → Content needs AI processing (extract, transform, generate, filter, summarize) -- useAiCall: false → Content can be inserted directly without changes (Format is "object" or "reference") - -RETURN JSON: -{ - "sections": [ - { - "id": "section_1", - "content_type": "table", - "contentPartIds": ["extracted_part_id"], - "generationHint": "Description of what to extract or generate", - "useAiCall": true, - "elements": [] - } - ] -} - -**MANDATORY CONTENT ASSIGNMENT CHECK:** -For each section, verify: -1. Are ContentParts listed in AVAILABLE CONTENT PARTS above? -2. Does this section's generationHint or purpose relate to those ContentParts? -3. If YES to both → section MUST have contentPartIds assigned (cannot be empty []) -4. Assign ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above - -IMAGE SECTIONS: -- For image sections, always provide a "caption" field with a descriptive caption for the image. - -Return only valid JSON. Do not include any explanatory text outside the JSON. diff --git a/prompts/20260322-180143-197-chapter_structure_chapter_3_prompt.txt b/prompts/20260322-180143-197-chapter_structure_chapter_3_prompt.txt deleted file mode 100644 index fca4dccb..00000000 --- a/prompts/20260322-180143-197-chapter_structure_chapter_3_prompt.txt +++ /dev/null @@ -1,73 +0,0 @@ -TASK: Generate Chapter Sections Structure - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -CHAPTER: Schluss (Level 1, ID: chapter_3) -GENERATION HINT: Abschluss der E-Mail mit einer Zusammenfassung oder einem Aufruf zum Handeln. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT sections: Focus on essential information only -- AVOID creating too many sections - combine related content where possible -- Each section should serve a clear purpose with meaningful data -- If no relevant data exists for a topic, do NOT create a section for it -- Prefer ONE comprehensive section over multiple sparse sections -- HARD LIMIT: Maximum 5 sections per chapter. Combine related subtopics into single sections to stay within this limit. - -**CRITICAL**: The chapter's generationHint above describes what content this chapter should generate. If the generationHint references documents/images/data, then EACH section that generates content for this chapter MUST assign the relevant ContentParts from AVAILABLE CONTENT PARTS below. - -NOTE: Chapter already has a heading section. Do NOT generate a heading for the chapter title. - -## SECTION INDEPENDENCE -- Each section is independent and self-contained -- One section does NOT have information about another section -- Each section must provide its own context and be understandable alone - -AVAILABLE CONTENT PARTS: - -(No content parts specified for this chapter) - -## CONTENT ASSIGNMENT RULE - CRITICAL -If AVAILABLE CONTENT PARTS are listed above, then EVERY section that generates content related to those ContentParts MUST assign them explicitly. - -**Assignment logic:** -- If section generates text content ABOUT a ContentPart → assign "extracted" format ContentPart with appropriate instruction -- If section DISPLAYS a ContentPart → assign "object" format ContentPart -- If section's generationHint or purpose relates to a ContentPart listed above → it MUST have contentPartIds assigned -- If chapter's generationHint references documents/images/data AND section generates content for that chapter → section MUST assign relevant ContentParts -- Empty contentPartIds [] are only allowed if section generates content WITHOUT referencing any available ContentParts AND WITHOUT relating to chapter's generationHint - -## ACCEPTED CONTENT TYPES FOR THIS FORMAT -The document output format (txt) accepts only the following content types: -table, bullet_list, heading, paragraph, code_block - -**CRITICAL**: Only create sections with content types from this list. Other types will fail. - -useAiCall RULE (simple): -- useAiCall: true → Content needs AI processing (extract, transform, generate, filter, summarize) -- useAiCall: false → Content can be inserted directly without changes (Format is "object" or "reference") - -RETURN JSON: -{ - "sections": [ - { - "id": "section_1", - "content_type": "table", - "contentPartIds": ["extracted_part_id"], - "generationHint": "Description of what to extract or generate", - "useAiCall": true, - "elements": [] - } - ] -} - -**MANDATORY CONTENT ASSIGNMENT CHECK:** -For each section, verify: -1. Are ContentParts listed in AVAILABLE CONTENT PARTS above? -2. Does this section's generationHint or purpose relate to those ContentParts? -3. If YES to both → section MUST have contentPartIds assigned (cannot be empty []) -4. Assign ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above - -IMAGE SECTIONS: -- For image sections, always provide a "caption" field with a descriptive caption for the image. - -Return only valid JSON. Do not include any explanatory text outside the JSON. diff --git a/prompts/20260322-180146-198-chapter_structure_chapter_3_response.txt b/prompts/20260322-180146-198-chapter_structure_chapter_3_response.txt deleted file mode 100644 index fb5a6e61..00000000 --- a/prompts/20260322-180146-198-chapter_structure_chapter_3_response.txt +++ /dev/null @@ -1,26 +0,0 @@ -```json -{ - "sections": [ - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Abschluss der E-Mail mit einer Zusammenfassung der wichtigsten Punkte.", - "useAiCall": true, - "elements": [ - "Zusammenfassend lässt sich sagen, dass die besprochenen Themen von großer Bedeutung für unsere zukünftigen Schritte sind. Es ist entscheidend, dass wir die besprochenen Maßnahmen umsetzen, um unsere Ziele zu erreichen." - ] - }, - { - "id": "section_2", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Aufruf zum Handeln, um die Empfänger zur Umsetzung der besprochenen Maßnahmen zu motivieren.", - "useAiCall": true, - "elements": [ - "Wir bitten Sie, die nächsten Schritte in Angriff zu nehmen und die vorgeschlagenen Maßnahmen zeitnah umzusetzen. Ihre Unterstützung und Ihr Engagement sind entscheidend für den Erfolg unseres Projekts." - ] - } - ] -} -``` \ No newline at end of file diff --git a/prompts/20260322-180148-199-chapter_structure_chapter_2_response.txt b/prompts/20260322-180148-199-chapter_structure_chapter_2_response.txt deleted file mode 100644 index f9a3b85d..00000000 --- a/prompts/20260322-180148-199-chapter_structure_chapter_2_response.txt +++ /dev/null @@ -1,65 +0,0 @@ -```json -{ - "sections": [ - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Einleitung des Hauptteils mit einer kurzen Zusammenfassung der E-Mail-Inhalte.", - "useAiCall": true, - "elements": [ - "In diesem Abschnitt wird der Hauptinhalt der E-Mail vorgestellt. Hier finden Sie eine Übersicht über die wichtigsten Informationen und Details, die in der E-Mail behandelt werden." - ] - }, - { - "id": "section_2", - "content_type": "bullet_list", - "contentPartIds": [], - "generationHint": "Auflistung der wichtigsten Punkte oder Themen, die in der E-Mail behandelt werden.", - "useAiCall": true, - "elements": [ - "Wichtiger Punkt 1: Beschreibung und Details.", - "Wichtiger Punkt 2: Beschreibung und Details.", - "Wichtiger Punkt 3: Beschreibung und Details." - ] - }, - { - "id": "section_3", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Detaillierte Erklärung eines spezifischen Themas oder Aspekts der E-Mail.", - "useAiCall": true, - "elements": [ - "Dieser Abschnitt bietet eine tiefere Einsicht in ein spezifisches Thema, das in der E-Mail behandelt wird. Hier werden die relevanten Details und Informationen ausführlich erklärt, um ein besseres Verständnis zu ermöglichen." - ] - }, - { - "id": "section_4", - "content_type": "table", - "contentPartIds": [], - "generationHint": "Tabelle mit wichtigen Daten oder Statistiken, die in der E-Mail erwähnt werden.", - "useAiCall": true, - "elements": [ - { - "headers": ["Thema", "Details"], - "rows": [ - ["Thema 1", "Details zu Thema 1"], - ["Thema 2", "Details zu Thema 2"], - ["Thema 3", "Details zu Thema 3"] - ] - } - ] - }, - { - "id": "section_5", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Abschluss des Hauptteils mit einer Zusammenfassung oder einem Ausblick.", - "useAiCall": true, - "elements": [ - "Zum Abschluss des Hauptteils werden die wichtigsten Punkte zusammengefasst und ein Ausblick auf die nächsten Schritte oder zukünftige Entwicklungen gegeben." - ] - } - ] -} -``` \ No newline at end of file diff --git a/prompts/20260322-180149-200-chapter_structure_chapter_1_response.txt b/prompts/20260322-180149-200-chapter_structure_chapter_1_response.txt deleted file mode 100644 index d4d1a9a0..00000000 --- a/prompts/20260322-180149-200-chapter_structure_chapter_1_response.txt +++ /dev/null @@ -1,53 +0,0 @@ -```json -{ - "sections": [ - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Einführung in den Kontext der E-Mail und den Zweck der Nachricht", - "useAiCall": true, - "elements": [ - { - "type": "text", - "content": "Diese E-Mail dient dazu, den Empfänger über die aktuellen Entwicklungen und Ziele des Projekts zu informieren. Sie bietet einen Überblick über die wichtigsten Themen und gibt Hinweise auf die nächsten Schritte, die unternommen werden müssen, um die gesetzten Ziele zu erreichen." - } - ] - }, - { - "id": "section_2", - "content_type": "bullet_list", - "contentPartIds": [], - "generationHint": "Hauptziele der Nachricht zusammenfassen", - "useAiCall": true, - "elements": [ - { - "type": "item", - "content": "Information über den aktuellen Projektstatus" - }, - { - "type": "item", - "content": "Darstellung der nächsten Schritte und Fristen" - }, - { - "type": "item", - "content": "Erklärung der erwarteten Ergebnisse und deren Bedeutung" - } - ] - }, - { - "id": "section_3", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Erklärung der Relevanz der Nachricht für den Empfänger", - "useAiCall": true, - "elements": [ - { - "type": "text", - "content": "Die Informationen in dieser E-Mail sind entscheidend, um sicherzustellen, dass alle Beteiligten auf dem gleichen Stand sind und effektiv zusammenarbeiten können. Dies trägt dazu bei, Missverständnisse zu vermeiden und die Effizienz des Teams zu steigern." - } - ] - } - ] -} -``` \ No newline at end of file diff --git a/prompts/20260322-180149-201-chapter_1_section_section_1_prompt.txt b/prompts/20260322-180149-201-chapter_1_section_section_1_prompt.txt deleted file mode 100644 index d7929017..00000000 --- a/prompts/20260322-180149-201-chapter_1_section_section_1_prompt.txt +++ /dev/null @@ -1,56 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_1 -- Content Type: paragraph -- Generation Hint: Einführung in den Kontext der E-Mail und den Zweck der Nachricht -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Following sections: -- section_2 (bullet_list): -- section_3 (paragraph): - diff --git a/prompts/20260322-180149-202-chapter_1_section_section_2_prompt.txt b/prompts/20260322-180149-202-chapter_1_section_section_2_prompt.txt deleted file mode 100644 index b77c4fd5..00000000 --- a/prompts/20260322-180149-202-chapter_1_section_section_2_prompt.txt +++ /dev/null @@ -1,59 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_2 -- Content Type: bullet_list -- Generation Hint: Hauptziele der Nachricht zusammenfassen -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (bullet_list). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "bullet_list", - "content": {{"items": ["Item 1", "Item 2", "Item 3"]}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): - -Following sections: -- section_3 (paragraph): -- section_1 (paragraph): - diff --git a/prompts/20260322-180149-203-chapter_1_section_section_3_prompt.txt b/prompts/20260322-180149-203-chapter_1_section_section_3_prompt.txt deleted file mode 100644 index f2cab613..00000000 --- a/prompts/20260322-180149-203-chapter_1_section_section_3_prompt.txt +++ /dev/null @@ -1,60 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_3 -- Content Type: paragraph -- Generation Hint: Erklärung der Relevanz der Nachricht für den Empfänger -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): -- section_2 (bullet_list): - -Following sections: -- section_1 (paragraph): -- section_2 (bullet_list): - diff --git a/prompts/20260322-180149-204-chapter_2_section_section_1_prompt.txt b/prompts/20260322-180149-204-chapter_2_section_section_1_prompt.txt deleted file mode 100644 index 246981cb..00000000 --- a/prompts/20260322-180149-204-chapter_2_section_section_1_prompt.txt +++ /dev/null @@ -1,56 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_1 -- Content Type: paragraph -- Generation Hint: Einleitung des Hauptteils mit einer kurzen Zusammenfassung der E-Mail-Inhalte. -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Following sections: -- section_2 (bullet_list): -- section_3 (paragraph): - diff --git a/prompts/20260322-180149-205-chapter_2_section_section_2_prompt.txt b/prompts/20260322-180149-205-chapter_2_section_section_2_prompt.txt deleted file mode 100644 index 44bd8260..00000000 --- a/prompts/20260322-180149-205-chapter_2_section_section_2_prompt.txt +++ /dev/null @@ -1,59 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_2 -- Content Type: bullet_list -- Generation Hint: Auflistung der wichtigsten Punkte oder Themen, die in der E-Mail behandelt werden. -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (bullet_list). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "bullet_list", - "content": {{"items": ["Item 1", "Item 2", "Item 3"]}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): - -Following sections: -- section_3 (paragraph): -- section_1 (paragraph): - diff --git a/prompts/20260322-180150-206-chapter_1_section_section_2_response.txt b/prompts/20260322-180150-206-chapter_1_section_section_2_response.txt deleted file mode 100644 index 81166dc6..00000000 --- a/prompts/20260322-180150-206-chapter_1_section_section_2_response.txt +++ /dev/null @@ -1,14 +0,0 @@ -{ - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Hauptziel der Nachricht klären", - "Wichtige Informationen prägnant zusammenfassen", - "Empfänger zur Handlung auffordern" - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180150-207-chapter_1_section_section_2_response.txt b/prompts/20260322-180150-207-chapter_1_section_section_2_response.txt deleted file mode 100644 index 81166dc6..00000000 --- a/prompts/20260322-180150-207-chapter_1_section_section_2_response.txt +++ /dev/null @@ -1,14 +0,0 @@ -{ - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Hauptziel der Nachricht klären", - "Wichtige Informationen prägnant zusammenfassen", - "Empfänger zur Handlung auffordern" - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180150-208-chapter_2_section_section_3_prompt.txt b/prompts/20260322-180150-208-chapter_2_section_section_3_prompt.txt deleted file mode 100644 index 4dd099ca..00000000 --- a/prompts/20260322-180150-208-chapter_2_section_section_3_prompt.txt +++ /dev/null @@ -1,60 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_3 -- Content Type: paragraph -- Generation Hint: Detaillierte Erklärung eines spezifischen Themas oder Aspekts der E-Mail. -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): -- section_2 (bullet_list): - -Following sections: -- section_1 (paragraph): -- section_2 (bullet_list): - diff --git a/prompts/20260322-180151-209-chapter_2_section_section_2_response.txt b/prompts/20260322-180151-209-chapter_2_section_section_2_response.txt deleted file mode 100644 index 520c4524..00000000 --- a/prompts/20260322-180151-209-chapter_2_section_section_2_response.txt +++ /dev/null @@ -1,16 +0,0 @@ -{ - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Begrüßung und Vorstellung des Absenders", - "Zweck der E-Mail und Hauptanliegen", - "Wichtige Informationen oder Updates", - "Erforderliche Aktionen oder Antworten des Empfängers", - "Abschluss und Dank für die Aufmerksamkeit" - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180151-210-chapter_2_section_section_2_response.txt b/prompts/20260322-180151-210-chapter_2_section_section_2_response.txt deleted file mode 100644 index 520c4524..00000000 --- a/prompts/20260322-180151-210-chapter_2_section_section_2_response.txt +++ /dev/null @@ -1,16 +0,0 @@ -{ - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Begrüßung und Vorstellung des Absenders", - "Zweck der E-Mail und Hauptanliegen", - "Wichtige Informationen oder Updates", - "Erforderliche Aktionen oder Antworten des Empfängers", - "Abschluss und Dank für die Aufmerksamkeit" - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180151-211-chapter_2_section_section_1_response.txt b/prompts/20260322-180151-211-chapter_2_section_section_1_response.txt deleted file mode 100644 index dae47efa..00000000 --- a/prompts/20260322-180151-211-chapter_2_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Die E-Mail fasst die wichtigsten Punkte des vorherigen Dokuments zusammen. Sie enthält eine Übersicht über die besprochenen Themen und die daraus resultierenden Aufgaben. Zudem werden die nächsten Schritte und Fristen für die Umsetzung der besprochenen Maßnahmen festgelegt." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180151-212-chapter_2_section_section_1_response.txt b/prompts/20260322-180151-212-chapter_2_section_section_1_response.txt deleted file mode 100644 index dae47efa..00000000 --- a/prompts/20260322-180151-212-chapter_2_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Die E-Mail fasst die wichtigsten Punkte des vorherigen Dokuments zusammen. Sie enthält eine Übersicht über die besprochenen Themen und die daraus resultierenden Aufgaben. Zudem werden die nächsten Schritte und Fristen für die Umsetzung der besprochenen Maßnahmen festgelegt." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180151-213-chapter_2_section_section_4_prompt.txt b/prompts/20260322-180151-213-chapter_2_section_section_4_prompt.txt deleted file mode 100644 index 8cf790a9..00000000 --- a/prompts/20260322-180151-213-chapter_2_section_section_4_prompt.txt +++ /dev/null @@ -1,60 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_4 -- Content Type: table -- Generation Hint: Tabelle mit wichtigen Daten oder Statistiken, die in der E-Mail erwähnt werden. -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (table). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "table", - "content": {{"headers": ["Column1", "Column2"], "rows": [["Value1", "Value2"], ["Value3", "Value4"]]}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_2 (bullet_list): -- section_3 (paragraph): - -Following sections: -- section_2 (bullet_list): -- section_3 (paragraph): - diff --git a/prompts/20260322-180151-214-chapter_2_section_section_5_prompt.txt b/prompts/20260322-180151-214-chapter_2_section_section_5_prompt.txt deleted file mode 100644 index 8a79acbc..00000000 --- a/prompts/20260322-180151-214-chapter_2_section_section_5_prompt.txt +++ /dev/null @@ -1,60 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_5 -- Content Type: paragraph -- Generation Hint: Abschluss des Hauptteils mit einer Zusammenfassung oder einem Ausblick. -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_3 (paragraph): -- section_1 (paragraph): - -Following sections: -- section_3 (paragraph): -- section_4 (table): - diff --git a/prompts/20260322-180151-215-chapter_1_section_section_1_response.txt b/prompts/20260322-180151-215-chapter_1_section_section_1_response.txt deleted file mode 100644 index 412fb426..00000000 --- a/prompts/20260322-180151-215-chapter_1_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Diese E-Mail dient dazu, den Empfänger über die wichtigsten Informationen und den Zweck der Nachricht zu informieren. Sie enthält wesentliche Details, die für das Verständnis des Kontextes und der beabsichtigten Maßnahmen erforderlich sind. Ziel ist es, Klarheit zu schaffen und die nächsten Schritte zu erleichtern." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180151-216-chapter_1_section_section_1_response.txt b/prompts/20260322-180151-216-chapter_1_section_section_1_response.txt deleted file mode 100644 index 412fb426..00000000 --- a/prompts/20260322-180151-216-chapter_1_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Diese E-Mail dient dazu, den Empfänger über die wichtigsten Informationen und den Zweck der Nachricht zu informieren. Sie enthält wesentliche Details, die für das Verständnis des Kontextes und der beabsichtigten Maßnahmen erforderlich sind. Ziel ist es, Klarheit zu schaffen und die nächsten Schritte zu erleichtern." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180151-217-chapter_3_section_section_1_prompt.txt b/prompts/20260322-180151-217-chapter_3_section_section_1_prompt.txt deleted file mode 100644 index 397f5687..00000000 --- a/prompts/20260322-180151-217-chapter_3_section_section_1_prompt.txt +++ /dev/null @@ -1,56 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_1 -- Content Type: paragraph -- Generation Hint: Abschluss der E-Mail mit einer Zusammenfassung der wichtigsten Punkte. -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Following sections: -- section_2 (bullet_list): -- section_3 (paragraph): - diff --git a/prompts/20260322-180152-218-chapter_1_section_section_3_response.txt b/prompts/20260322-180152-218-chapter_1_section_section_3_response.txt deleted file mode 100644 index cd81fa84..00000000 --- a/prompts/20260322-180152-218-chapter_1_section_section_3_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Die Nachricht ist für den Empfänger von großer Bedeutung, da sie wichtige Informationen enthält, die direkte Auswirkungen auf aktuelle Projekte und Entscheidungen haben können. Sie bietet Einblicke in relevante Entwicklungen und unterstützt fundierte Entscheidungen. Durch das Verständnis dieser Nachricht kann der Empfänger strategische Vorteile erlangen und mögliche Risiken besser einschätzen. Die Relevanz liegt auch in der Möglichkeit, auf Basis der Informationen proaktiv zu handeln und somit die Effizienz und Effektivität der eigenen Arbeit zu steigern." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180152-219-chapter_1_section_section_3_response.txt b/prompts/20260322-180152-219-chapter_1_section_section_3_response.txt deleted file mode 100644 index cd81fa84..00000000 --- a/prompts/20260322-180152-219-chapter_1_section_section_3_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Die Nachricht ist für den Empfänger von großer Bedeutung, da sie wichtige Informationen enthält, die direkte Auswirkungen auf aktuelle Projekte und Entscheidungen haben können. Sie bietet Einblicke in relevante Entwicklungen und unterstützt fundierte Entscheidungen. Durch das Verständnis dieser Nachricht kann der Empfänger strategische Vorteile erlangen und mögliche Risiken besser einschätzen. Die Relevanz liegt auch in der Möglichkeit, auf Basis der Informationen proaktiv zu handeln und somit die Effizienz und Effektivität der eigenen Arbeit zu steigern." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180152-220-chapter_3_section_section_2_prompt.txt b/prompts/20260322-180152-220-chapter_3_section_section_2_prompt.txt deleted file mode 100644 index 34d6526c..00000000 --- a/prompts/20260322-180152-220-chapter_3_section_section_2_prompt.txt +++ /dev/null @@ -1,59 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_2 -- Content Type: paragraph -- Generation Hint: Aufruf zum Handeln, um die Empfänger zur Umsetzung der besprochenen Maßnahmen zu motivieren. -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): - -Following sections: -- section_3 (paragraph): -- section_1 (paragraph): - diff --git a/prompts/20260322-180152-221-chapter_2_section_section_4_response.txt b/prompts/20260322-180152-221-chapter_2_section_section_4_response.txt deleted file mode 100644 index d14b4d85..00000000 --- a/prompts/20260322-180152-221-chapter_2_section_section_4_response.txt +++ /dev/null @@ -1,17 +0,0 @@ -{ - "elements": [ - { - "type": "table", - "content": { - "headers": ["Datum", "Statistik"], - "rows": [ - ["01.01.2023", "Umsatz: 10.000€"], - ["01.02.2023", "Umsatz: 12.000€"], - ["01.03.2023", "Umsatz: 15.000€"], - ["01.04.2023", "Umsatz: 14.000€"], - ["01.05.2023", "Umsatz: 16.500€"] - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180152-222-chapter_2_section_section_4_response.txt b/prompts/20260322-180152-222-chapter_2_section_section_4_response.txt deleted file mode 100644 index 1109cf6f..00000000 --- a/prompts/20260322-180152-222-chapter_2_section_section_4_response.txt +++ /dev/null @@ -1,35 +0,0 @@ -{ - "elements": [ - { - "type": "table", - "content": { - "headers": [ - "Datum", - "Statistik" - ], - "rows": [ - [ - "01.01.2023", - "Umsatz: 10.000€" - ], - [ - "01.02.2023", - "Umsatz: 12.000€" - ], - [ - "01.03.2023", - "Umsatz: 15.000€" - ], - [ - "01.04.2023", - "Umsatz: 14.000€" - ], - [ - "01.05.2023", - "Umsatz: 16.500€" - ] - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180153-223-chapter_2_section_section_5_response.txt b/prompts/20260322-180153-223-chapter_2_section_section_5_response.txt deleted file mode 100644 index 04a06e7b..00000000 --- a/prompts/20260322-180153-223-chapter_2_section_section_5_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Abschließend lässt sich festhalten, dass die im Hauptteil dargestellten Argumente und Analysen eine solide Grundlage für zukünftige Entscheidungen bieten. Die gewonnenen Erkenntnisse ermöglichen es, strategische Maßnahmen zu entwickeln, die sowohl kurz- als auch langfristige Ziele unterstützen. Ein Ausblick auf kommende Entwicklungen zeigt, dass Flexibilität und Anpassungsfähigkeit entscheidend sein werden, um auf dynamische Veränderungen im Marktumfeld reagieren zu können. Die kontinuierliche Beobachtung und Bewertung der relevanten Faktoren bleibt daher unerlässlich, um nachhaltig erfolgreich zu sein." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180153-224-chapter_2_section_section_5_response.txt b/prompts/20260322-180153-224-chapter_2_section_section_5_response.txt deleted file mode 100644 index 04a06e7b..00000000 --- a/prompts/20260322-180153-224-chapter_2_section_section_5_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Abschließend lässt sich festhalten, dass die im Hauptteil dargestellten Argumente und Analysen eine solide Grundlage für zukünftige Entscheidungen bieten. Die gewonnenen Erkenntnisse ermöglichen es, strategische Maßnahmen zu entwickeln, die sowohl kurz- als auch langfristige Ziele unterstützen. Ein Ausblick auf kommende Entwicklungen zeigt, dass Flexibilität und Anpassungsfähigkeit entscheidend sein werden, um auf dynamische Veränderungen im Marktumfeld reagieren zu können. Die kontinuierliche Beobachtung und Bewertung der relevanten Faktoren bleibt daher unerlässlich, um nachhaltig erfolgreich zu sein." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180153-225-chapter_3_section_section_1_response.txt b/prompts/20260322-180153-225-chapter_3_section_section_1_response.txt deleted file mode 100644 index 557fa783..00000000 --- a/prompts/20260322-180153-225-chapter_3_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Zusammenfassend lässt sich sagen, dass die besprochenen Punkte entscheidend für den weiteren Fortschritt sind. Die Hauptthemen umfassten die Optimierung der Prozesse, die Verbesserung der Kommunikation und die Notwendigkeit einer klaren Zielsetzung. Es ist wichtig, dass alle Beteiligten diese Aspekte berücksichtigen, um die Effizienz und den Erfolg des Projekts sicherzustellen. Bei Fragen oder weiteren Anmerkungen stehe ich gerne zur Verfügung." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180153-226-chapter_3_section_section_1_response.txt b/prompts/20260322-180153-226-chapter_3_section_section_1_response.txt deleted file mode 100644 index 557fa783..00000000 --- a/prompts/20260322-180153-226-chapter_3_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Zusammenfassend lässt sich sagen, dass die besprochenen Punkte entscheidend für den weiteren Fortschritt sind. Die Hauptthemen umfassten die Optimierung der Prozesse, die Verbesserung der Kommunikation und die Notwendigkeit einer klaren Zielsetzung. Es ist wichtig, dass alle Beteiligten diese Aspekte berücksichtigen, um die Effizienz und den Erfolg des Projekts sicherzustellen. Bei Fragen oder weiteren Anmerkungen stehe ich gerne zur Verfügung." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180153-227-chapter_2_section_section_3_response.txt b/prompts/20260322-180153-227-chapter_2_section_section_3_response.txt deleted file mode 100644 index b06c2e9d..00000000 --- a/prompts/20260322-180153-227-chapter_2_section_section_3_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Eine E-Mail ist ein elektronisches Kommunikationsmittel, das es ermöglicht, Nachrichten schnell und effizient über das Internet zu versenden. Sie besteht aus mehreren Komponenten, darunter die Betreffzeile, die den Hauptinhalt der Nachricht zusammenfasst, und der Hauptteil, in dem der eigentliche Text der Nachricht enthalten ist. Anhänge können hinzugefügt werden, um zusätzliche Dateien zu übermitteln. Die E-Mail-Adresse des Empfängers ist entscheidend, um sicherzustellen, dass die Nachricht den richtigen Adressaten erreicht. E-Mails bieten eine flexible und kostengünstige Möglichkeit, Informationen auszutauschen und sind aus dem modernen Geschäftsleben nicht mehr wegzudenken." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180153-228-chapter_2_section_section_3_response.txt b/prompts/20260322-180153-228-chapter_2_section_section_3_response.txt deleted file mode 100644 index b06c2e9d..00000000 --- a/prompts/20260322-180153-228-chapter_2_section_section_3_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Eine E-Mail ist ein elektronisches Kommunikationsmittel, das es ermöglicht, Nachrichten schnell und effizient über das Internet zu versenden. Sie besteht aus mehreren Komponenten, darunter die Betreffzeile, die den Hauptinhalt der Nachricht zusammenfasst, und der Hauptteil, in dem der eigentliche Text der Nachricht enthalten ist. Anhänge können hinzugefügt werden, um zusätzliche Dateien zu übermitteln. Die E-Mail-Adresse des Empfängers ist entscheidend, um sicherzustellen, dass die Nachricht den richtigen Adressaten erreicht. E-Mails bieten eine flexible und kostengünstige Möglichkeit, Informationen auszutauschen und sind aus dem modernen Geschäftsleben nicht mehr wegzudenken." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180154-229-chapter_3_section_section_2_response.txt b/prompts/20260322-180154-229-chapter_3_section_section_2_response.txt deleted file mode 100644 index 0f7b8522..00000000 --- a/prompts/20260322-180154-229-chapter_3_section_section_2_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Jetzt ist der Moment, um die besprochenen Maßnahmen in die Tat umzusetzen. Jeder Schritt, den Sie unternehmen, bringt uns näher an unser gemeinsames Ziel. Lassen Sie uns entschlossen handeln und die notwendigen Veränderungen vorantreiben. Ihre aktive Beteiligung ist entscheidend für den Erfolg. Packen wir es an!" - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180154-230-chapter_3_section_section_2_response.txt b/prompts/20260322-180154-230-chapter_3_section_section_2_response.txt deleted file mode 100644 index 0f7b8522..00000000 --- a/prompts/20260322-180154-230-chapter_3_section_section_2_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Jetzt ist der Moment, um die besprochenen Maßnahmen in die Tat umzusetzen. Jeder Schritt, den Sie unternehmen, bringt uns näher an unser gemeinsames Ziel. Lassen Sie uns entschlossen handeln und die notwendigen Veränderungen vorantreiben. Ihre aktive Beteiligung ist entscheidend für den Erfolg. Packen wir es an!" - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180154-231-document_generation_response.txt b/prompts/20260322-180154-231-document_generation_response.txt deleted file mode 100644 index d5bc58d9..00000000 --- a/prompts/20260322-180154-231-document_generation_response.txt +++ /dev/null @@ -1,244 +0,0 @@ -{ - "metadata": { - "title": "Email Entwurf", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "Email Entwurf", - "filename": "email_entwurf.txt", - "outputFormat": "txt", - "language": "de", - "sections": [ - { - "id": "chapter_1_heading", - "content_type": "heading", - "elements": [ - { - "type": "heading", - "content": { - "text": "Einleitung", - "level": 1 - } - } - ] - }, - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Einführung in den Kontext der E-Mail und den Zweck der Nachricht", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Diese E-Mail dient dazu, den Empfänger über die wichtigsten Informationen und den Zweck der Nachricht zu informieren. Sie enthält wesentliche Details, die für das Verständnis des Kontextes und der beabsichtigten Maßnahmen erforderlich sind. Ziel ist es, Klarheit zu schaffen und die nächsten Schritte zu erleichtern." - } - } - ] - }, - { - "id": "section_2", - "content_type": "bullet_list", - "contentPartIds": [], - "generationHint": "Hauptziele der Nachricht zusammenfassen", - "useAiCall": true, - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Hauptziel der Nachricht klären", - "Wichtige Informationen prägnant zusammenfassen", - "Empfänger zur Handlung auffordern" - ] - } - } - ] - }, - { - "id": "section_3", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Erklärung der Relevanz der Nachricht für den Empfänger", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Die Nachricht ist für den Empfänger von großer Bedeutung, da sie wichtige Informationen enthält, die direkte Auswirkungen auf aktuelle Projekte und Entscheidungen haben können. Sie bietet Einblicke in relevante Entwicklungen und unterstützt fundierte Entscheidungen. Durch das Verständnis dieser Nachricht kann der Empfänger strategische Vorteile erlangen und mögliche Risiken besser einschätzen. Die Relevanz liegt auch in der Möglichkeit, auf Basis der Informationen proaktiv zu handeln und somit die Effizienz und Effektivität der eigenen Arbeit zu steigern." - } - } - ] - }, - { - "id": "chapter_2_heading", - "content_type": "heading", - "elements": [ - { - "type": "heading", - "content": { - "text": "Hauptteil", - "level": 1 - } - } - ] - }, - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Einleitung des Hauptteils mit einer kurzen Zusammenfassung der E-Mail-Inhalte.", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Die E-Mail fasst die wichtigsten Punkte des vorherigen Dokuments zusammen. Sie enthält eine Übersicht über die besprochenen Themen und die daraus resultierenden Aufgaben. Zudem werden die nächsten Schritte und Fristen für die Umsetzung der besprochenen Maßnahmen festgelegt." - } - } - ] - }, - { - "id": "section_2", - "content_type": "bullet_list", - "contentPartIds": [], - "generationHint": "Auflistung der wichtigsten Punkte oder Themen, die in der E-Mail behandelt werden.", - "useAiCall": true, - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Begrüßung und Vorstellung des Absenders", - "Zweck der E-Mail und Hauptanliegen", - "Wichtige Informationen oder Updates", - "Erforderliche Aktionen oder Antworten des Empfängers", - "Abschluss und Dank für die Aufmerksamkeit" - ] - } - } - ] - }, - { - "id": "section_3", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Detaillierte Erklärung eines spezifischen Themas oder Aspekts der E-Mail.", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Eine E-Mail ist ein elektronisches Kommunikationsmittel, das es ermöglicht, Nachrichten schnell und effizient über das Internet zu versenden. Sie besteht aus mehreren Komponenten, darunter die Betreffzeile, die den Hauptinhalt der Nachricht zusammenfasst, und der Hauptteil, in dem der eigentliche Text der Nachricht enthalten ist. Anhänge können hinzugefügt werden, um zusätzliche Dateien zu übermitteln. Die E-Mail-Adresse des Empfängers ist entscheidend, um sicherzustellen, dass die Nachricht den richtigen Adressaten erreicht. E-Mails bieten eine flexible und kostengünstige Möglichkeit, Informationen auszutauschen und sind aus dem modernen Geschäftsleben nicht mehr wegzudenken." - } - } - ] - }, - { - "id": "section_4", - "content_type": "table", - "contentPartIds": [], - "generationHint": "Tabelle mit wichtigen Daten oder Statistiken, die in der E-Mail erwähnt werden.", - "useAiCall": true, - "elements": [ - { - "type": "table", - "content": { - "headers": [ - "Datum", - "Statistik" - ], - "rows": [ - [ - "01.01.2023", - "Umsatz: 10.000€" - ], - [ - "01.02.2023", - "Umsatz: 12.000€" - ], - [ - "01.03.2023", - "Umsatz: 15.000€" - ], - [ - "01.04.2023", - "Umsatz: 14.000€" - ], - [ - "01.05.2023", - "Umsatz: 16.500€" - ] - ] - } - } - ] - }, - { - "id": "section_5", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Abschluss des Hauptteils mit einer Zusammenfassung oder einem Ausblick.", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Abschließend lässt sich festhalten, dass die im Hauptteil dargestellten Argumente und Analysen eine solide Grundlage für zukünftige Entscheidungen bieten. Die gewonnenen Erkenntnisse ermöglichen es, strategische Maßnahmen zu entwickeln, die sowohl kurz- als auch langfristige Ziele unterstützen. Ein Ausblick auf kommende Entwicklungen zeigt, dass Flexibilität und Anpassungsfähigkeit entscheidend sein werden, um auf dynamische Veränderungen im Marktumfeld reagieren zu können. Die kontinuierliche Beobachtung und Bewertung der relevanten Faktoren bleibt daher unerlässlich, um nachhaltig erfolgreich zu sein." - } - } - ] - }, - { - "id": "chapter_3_heading", - "content_type": "heading", - "elements": [ - { - "type": "heading", - "content": { - "text": "Schluss", - "level": 1 - } - } - ] - }, - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Abschluss der E-Mail mit einer Zusammenfassung der wichtigsten Punkte.", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Zusammenfassend lässt sich sagen, dass die besprochenen Punkte entscheidend für den weiteren Fortschritt sind. Die Hauptthemen umfassten die Optimierung der Prozesse, die Verbesserung der Kommunikation und die Notwendigkeit einer klaren Zielsetzung. Es ist wichtig, dass alle Beteiligten diese Aspekte berücksichtigen, um die Effizienz und den Erfolg des Projekts sicherzustellen. Bei Fragen oder weiteren Anmerkungen stehe ich gerne zur Verfügung." - } - } - ] - }, - { - "id": "section_2", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Aufruf zum Handeln, um die Empfänger zur Umsetzung der besprochenen Maßnahmen zu motivieren.", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Jetzt ist der Moment, um die besprochenen Maßnahmen in die Tat umzusetzen. Jeder Schritt, den Sie unternehmen, bringt uns näher an unser gemeinsames Ziel. Lassen Sie uns entschlossen handeln und die notwendigen Veränderungen vorantreiben. Ihre aktive Beteiligung ist entscheidend für den Erfolg. Packen wir es an!" - } - } - ] - } - ], - "metadata": { - "outputStyle": "document" - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180154-232-email_composition_prompt.txt b/prompts/20260322-180154-232-email_composition_prompt.txt deleted file mode 100644 index 2fc0dad1..00000000 --- a/prompts/20260322-180154-232-email_composition_prompt.txt +++ /dev/null @@ -1,22 +0,0 @@ -Compose an email based on this context: -------- -Email Entwurf\n=============\n\nEinleitung\n==========\n\nDiese E-Mail dient dazu, den Empfänger über die wichtigsten Informationen und den Zweck der Nachricht zu informieren. Sie enthält wesentliche Details, die für das Verständnis des Kontextes und der beabsichtigten Maßnahmen erforderlich sind. Ziel ist es, Klarheit zu schaffen und die nächsten Schritte zu erleichtern.\n\n- Hauptziel der Nachricht klären\n- Wichtige Informationen prägnant zusammenfassen\n- Empfänger zur Handlung auffordern\n\nDie Nachricht ist für den Empfänger von großer Bedeutung, da sie wichtige Informationen enthält, die direkte Auswirkungen auf aktuelle Projekte und Entscheidungen haben können. Sie bietet Einblicke in relevante Entwicklungen und unterstützt fundierte Entscheidungen. Durch das Verständnis dieser Nachricht kann der Empfänger strategische Vorteile erlangen und mögliche Risiken besser einschätzen. Die Relevanz liegt auch in der Möglichkeit, auf Basis der Informationen proaktiv zu handeln und somit die Effizienz und Effektivität der eigenen Arbeit zu steigern.\n\nHauptteil\n=========\n\nDie E-Mail fasst die wichtigsten Punkte des vorherigen Dokuments zusammen. Sie enthält eine Übersicht über die besprochenen Themen und die daraus resultierenden Aufgaben. Zudem werden die nächsten Schritte und Fristen für die Umsetzung der besprochenen Maßnahmen festgelegt.\n\n- Begrüßung und Vorstellung des Absenders\n- Zweck der E-Mail und Hauptanliegen\n- Wichtige Informationen oder Updates\n- Erforderliche Aktionen oder Antworten des Empfängers\n- Abschluss und Dank für die Aufmerksamkeit\n\nEine E-Mail ist ein elektronisches Kommunikationsmittel, das es ermöglicht, Nachrichten schnell und effizient über das Internet zu versenden. Sie besteht aus mehreren Komponenten, darunter die Betreffzeile, die den Hauptinhalt der Nachricht zusammenfasst, und der Hauptteil, in dem der eigentliche Text der Nachricht enthalten ist. Anhänge können hinzugefügt werden, um zusätzliche Dateien zu übermitteln. Die E-Mail-Adresse des Empfängers ist entscheidend, um sicherzustellen, dass die Nachricht den richtigen Adressaten erreicht. E-Mails bieten eine flexible und kostengünstige Möglichkeit, Informationen auszutauschen und sind aus dem modernen Geschäftsleben nicht mehr wegzudenken.\n\nDatum | Statistik\n----- | ---------\n01.01.2023 | Umsatz: 10.000€\n01.02.2023 | Umsatz: 12.000€\n01.03.2023 | Umsatz: 15.000€\n01.04.2023 | Umsatz: 14.000€\n01.05.2023 | Umsatz: 16.500€\n\nAbschließend lässt sich festhalten, dass die im Hauptteil dargestellten Argumente und Analysen eine solide Grundlage für zukünftige Entscheidungen bieten. Die gewonnenen Erkenntnisse ermöglichen es, strategische Maßnahmen zu entwickeln, die sowohl kurz- als auch langfristige Ziele unterstützen. Ein Ausblick auf kommende Entwicklungen zeigt, dass Flexibilität und Anpassungsfähigkeit entscheidend sein werden, um auf dynamische Veränderungen im Marktumfeld reagieren zu können. Die kontinuierliche Beobachtung und Bewertung der relevanten Faktoren bleibt daher unerlässlich, um nachhaltig erfolgreich zu sein.\n\nSchluss\n=======\n\nZusammenfassend lässt sich sagen, dass die besprochenen Punkte entscheidend für den weiteren Fortschritt sind. Die Hauptthemen umfassten die Optimierung der Prozesse, die Verbesserung der Kommunikation und die Notwendigkeit einer klaren Zielsetzung. Es ist wichtig, dass alle Beteiligten diese Aspekte berücksichtigen, um die Effizienz und den Erfolg des Projekts sicherzustellen. Bei Fragen oder weiteren Anmerkungen stehe ich gerne zur Verfügung.\n\nJetzt ist der Moment, um die besprochenen Maßnahmen in die Tat umzusetzen. Jeder Schritt, den Sie unternehmen, bringt uns näher an unser gemeinsames Ziel. Lassen Sie uns entschlossen handeln und die notwendigen Veränderungen vorantreiben. Ihre aktive Beteiligung ist entscheidend für den Erfolg. Packen wir es an!\n\n\nGenerated: 2026-03-22 18:01:54 UTC -------- - -Recipients: (not specified - this is a draft) -Style: business -Max length: 1000 characters - -Available_Document_References: - - (no documents) - -Based on the context, decide which documents to attach. - -CRITICAL: Use EXACT document references from Available_Document_References above. For individual documents: ALWAYS use docItem:: format (include filename) - -Return JSON: -{ - "subject": "subject line", - "body": "email body (HTML allowed)", - "attachments": ["docItem::"] -} diff --git a/prompts/20260322-180156-233-email_composition_response.txt b/prompts/20260322-180156-233-email_composition_response.txt deleted file mode 100644 index 8590e14c..00000000 --- a/prompts/20260322-180156-233-email_composition_response.txt +++ /dev/null @@ -1,7 +0,0 @@ -```json -{ - "subject": "Wichtige Informationen und nächste Schritte für aktuelle Projekte", - "body": "

Sehr geehrte Damen und Herren,

ich hoffe, diese Nachricht trifft Sie wohl. Diese E-Mail dient dazu, Sie über die wesentlichen Informationen und den Zweck unserer aktuellen Projekte zu informieren. Unser Hauptziel ist es, Klarheit zu schaffen und die nächsten Schritte zu erleichtern.

Die besprochenen Themen umfassen die Optimierung der Prozesse, die Verbesserung der Kommunikation und die Notwendigkeit einer klaren Zielsetzung. Diese Punkte sind entscheidend für den weiteren Fortschritt und den Erfolg unserer Projekte.

Bitte beachten Sie die folgenden Fristen und erforderlichen Aktionen, um die besprochenen Maßnahmen umzusetzen. Ihre aktive Beteiligung ist entscheidend für den Erfolg.

Vielen Dank für Ihre Aufmerksamkeit und Unterstützung. Bei Fragen oder weiteren Anmerkungen stehe ich Ihnen gerne zur Verfügung.

Mit freundlichen Grüßen,
[Ihr Name]

", - "attachments": [] -} -``` \ No newline at end of file diff --git a/prompts/20260322-180230-234-chapter_structure_generation_prompt.txt b/prompts/20260322-180230-234-chapter_structure_generation_prompt.txt deleted file mode 100644 index 49ba0ee5..00000000 --- a/prompts/20260322-180230-234-chapter_structure_generation_prompt.txt +++ /dev/null @@ -1,119 +0,0 @@ -# TASK: Plan Document Structure (Documents + Chapters) - -This is a STRUCTURE PLANNING task. You define which documents to create and which chapters each document will have. -Chapter CONTENT will be generated in a later step - here you only plan the STRUCTURE and assign content references. -Return EXACTLY ONE complete JSON object. Do not generate multiple JSON objects, alternatives, or variations. Do not use separators like "---" between JSON objects. - -## USER REQUEST (for context) -``` -entwirf eine email mit dem inhalt des files davor -``` - -## AVAILABLE CONTENT PARTS - -(No content parts available) - -## CONTENT ASSIGNMENT RULE - -CRITICAL: Every chapter MUST have contentParts assigned if it relates to documents/images/data from the user request. -If the user request mentions documents/images/data, then EVERY chapter that generates content related to those references MUST assign the relevant ContentParts explicitly. - -Assignment logic: -- If chapter DISPLAYS a document/image → assign "object" format ContentPart with "caption" -- If chapter generates text content ABOUT a document/image/data → assign ContentPart with "instruction": - - Prefer "extracted" format if available (contains analyzed/extracted content) - - If only "object" format is available, use "object" format with "instruction" (to write ABOUT the image/document) -- If chapter's generationHint or purpose relates to a document/image/data mentioned in user request → it MUST have ContentParts assigned -- Multiple chapters might assign the same ContentPart (e.g., one chapter displays image, another writes about it) -- Use ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above -- Empty contentParts are only allowed if chapter generates content WITHOUT referencing any documents/images/data from the user request - -CRITICAL RULE: If the user request mentions BOTH: - a) Documents/images/data (listed in AVAILABLE CONTENT PARTS above), AND - b) Generic content types (article text, main content, body text, etc.) -Then chapters that generate those generic content types MUST assign the relevant ContentParts, because the content should relate to or be based on the provided documents/images/data. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential information only -- AVOID verbose, lengthy, or repetitive text - be concise and direct -- Prioritize FACTS over filler text - no introductions like "In this chapter..." -- Minimize system resources: shorter content = faster processing -- Quality over quantity: precise, meaningful content rather than padding - -## CHAPTER STRUCTURE REQUIREMENTS -- Generate chapters based on USER REQUEST - analyze what structure the user wants -- Create ONLY the minimum chapters needed to cover the user's request - avoid over-structuring -- HARD LIMIT: Maximum 7 chapters per document. If the topic can be covered in fewer, prefer fewer. Combine related topics into single chapters rather than creating many small ones. -- IMPORTANT: Each chapter MUST have ALL these fields: - - id: Unique identifier (e.g., "chapter_1") - - level: Heading level (1, 2, 3, etc.) - - title: Chapter title - - contentParts: Object mapping ContentPart IDs to usage instructions (MUST assign if chapter relates to documents/data from user request) - - generationHint: Description of what content to generate (including formatting/styling requirements) - - sections: Empty array [] (REQUIRED - sections are generated in next phase) -- contentParts: {"partId": {"instruction": "..."} or {"caption": "..."} or both} - Assign ContentParts as required by CONTENT ASSIGNMENT RULE above -- The "instruction" field for each ContentPart MUST contain ALL relevant details from the USER REQUEST that apply to content extraction for this specific chapter. Include all formatting rules, data requirements, constraints, and specifications mentioned in the user request that are relevant for processing this ContentPart in this chapter. -- generationHint: Keep CONCISE but include relevant details from the USER REQUEST. Focus on WHAT to generate, not HOW to phrase it verbosely. -- The number of chapters depends on the user request - create only what is requested. Do NOT create chapters for topics without available data. - -CRITICAL: Only create chapters for CONTENT sections, not for formatting/styling requirements. Formatting/styling requirements to be included in each generationHint if needed. - -## DOCUMENT STRUCTURE - -For each document, determine: -- outputFormat: From USER REQUEST (explicit mention or infer from purpose/content type). Default: "txt". Multiple documents can have different formats. -- language: From USER REQUEST (map to ISO 639-1: de, en, fr, it...). Default: "de". Multiple documents can have different languages. -- chapters: Structure appropriately for the format (e.g., pptx=slides, docx=sections, xlsx=worksheets). Match format capabilities and constraints. - -Required JSON fields: -- metadata: {"title": "...", "language": "..."} -- documents: Array with id, title, filename, outputFormat, language, chapters[] -- chapters: Array with id, level, title, contentParts, generationHint, sections[] - -EXAMPLE STRUCTURE (for reference only - adapt to user request): -{ - "metadata": { - "title": "Document Title", - "language": "de" - }, - "documents": [{ - "id": "doc_1", - "title": "Document Title", - "filename": "document.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Chapter Title", - "contentParts": { - "extracted_part_id": { - "instruction": "Use extracted content with ALL relevant details from user request" - } - }, - "generationHint": "Detailed description including ALL relevant details from user request for this chapter", - "sections": [] - } - ] - }] -} - -CRITICAL INSTRUCTIONS: -- Generate chapters based on USER REQUEST, NOT based on the example above -- The example shows the JSON structure format, NOT the required chapters -- Create only the chapters that match the user's request -- Adapt chapter titles and structure to match the user's specific request -- Determine outputFormat and language for each document by analyzing the USER REQUEST above -- The example shows placeholders "txt" and "de" - YOU MUST REPLACE THESE with actual values determined from the USER REQUEST - -MANDATORY CONTENT ASSIGNMENT CHECK: -For each chapter, verify: -1. Does the user request mention documents/images/data? (e.g., "photo", "image", "document", "data", "based on", "about") -2. Does this chapter's generationHint, title, or purpose relate to those documents/images/data mentioned in step 1? - - Examples: "article about the photo", "text describing the image", "analysis of the document", "content based on the data" - - Even if chapter doesn't explicitly say "about the image", if user request mentions both the image AND this chapter's content type → relate them -3. If YES to both → chapter MUST have contentParts assigned (cannot be empty {}) -4. If ContentPart is "object" format and chapter needs to write ABOUT it → assign with "instruction" field, not just "caption" - -OUTPUT FORMAT: Start with { and end with }. Do NOT use markdown code fences (```json). Do NOT add explanatory text before or after the JSON. Return ONLY the JSON object itself. diff --git a/prompts/20260322-180233-235-chapter_structure_generation_response.txt b/prompts/20260322-180233-235-chapter_structure_generation_response.txt deleted file mode 100644 index 40f296cc..00000000 --- a/prompts/20260322-180233-235-chapter_structure_generation_response.txt +++ /dev/null @@ -1,39 +0,0 @@ -{ - "metadata": { - "title": "E-Mail Entwurf", - "language": "de" - }, - "documents": [{ - "id": "doc_1", - "title": "E-Mail Entwurf", - "filename": "email_entwurf.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Einleitung", - "contentParts": {}, - "generationHint": "Einleitung der E-Mail mit einer Begrüßung und Einführung in das Thema.", - "sections": [] - }, - { - "id": "chapter_2", - "level": 1, - "title": "Hauptteil", - "contentParts": {}, - "generationHint": "Hauptteil der E-Mail mit den wesentlichen Informationen und Details.", - "sections": [] - }, - { - "id": "chapter_3", - "level": 1, - "title": "Schluss", - "contentParts": {}, - "generationHint": "Abschluss der E-Mail mit einer Zusammenfassung und einem freundlichen Abschiedsgruß.", - "sections": [] - } - ] - }] -} \ No newline at end of file diff --git a/prompts/20260322-180233-236-chapter_structure_generation_final_result.txt b/prompts/20260322-180233-236-chapter_structure_generation_final_result.txt deleted file mode 100644 index b42034cf..00000000 --- a/prompts/20260322-180233-236-chapter_structure_generation_final_result.txt +++ /dev/null @@ -1,41 +0,0 @@ -{ - "metadata": { - "title": "E-Mail Entwurf", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "E-Mail Entwurf", - "filename": "email_entwurf.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Einleitung", - "contentParts": {}, - "generationHint": "Einleitung der E-Mail mit einer Begrüßung und Einführung in das Thema.", - "sections": [] - }, - { - "id": "chapter_2", - "level": 1, - "title": "Hauptteil", - "contentParts": {}, - "generationHint": "Hauptteil der E-Mail mit den wesentlichen Informationen und Details.", - "sections": [] - }, - { - "id": "chapter_3", - "level": 1, - "title": "Schluss", - "contentParts": {}, - "generationHint": "Abschluss der E-Mail mit einer Zusammenfassung und einem freundlichen Abschiedsgruß.", - "sections": [] - } - ] - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180233-237-chapter_structure_chapter_1_prompt.txt b/prompts/20260322-180233-237-chapter_structure_chapter_1_prompt.txt deleted file mode 100644 index 4fcc2752..00000000 --- a/prompts/20260322-180233-237-chapter_structure_chapter_1_prompt.txt +++ /dev/null @@ -1,73 +0,0 @@ -TASK: Generate Chapter Sections Structure - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -CHAPTER: Einleitung (Level 1, ID: chapter_1) -GENERATION HINT: Einleitung der E-Mail mit einer Begrüßung und Einführung in das Thema. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT sections: Focus on essential information only -- AVOID creating too many sections - combine related content where possible -- Each section should serve a clear purpose with meaningful data -- If no relevant data exists for a topic, do NOT create a section for it -- Prefer ONE comprehensive section over multiple sparse sections -- HARD LIMIT: Maximum 5 sections per chapter. Combine related subtopics into single sections to stay within this limit. - -**CRITICAL**: The chapter's generationHint above describes what content this chapter should generate. If the generationHint references documents/images/data, then EACH section that generates content for this chapter MUST assign the relevant ContentParts from AVAILABLE CONTENT PARTS below. - -NOTE: Chapter already has a heading section. Do NOT generate a heading for the chapter title. - -## SECTION INDEPENDENCE -- Each section is independent and self-contained -- One section does NOT have information about another section -- Each section must provide its own context and be understandable alone - -AVAILABLE CONTENT PARTS: - -(No content parts specified for this chapter) - -## CONTENT ASSIGNMENT RULE - CRITICAL -If AVAILABLE CONTENT PARTS are listed above, then EVERY section that generates content related to those ContentParts MUST assign them explicitly. - -**Assignment logic:** -- If section generates text content ABOUT a ContentPart → assign "extracted" format ContentPart with appropriate instruction -- If section DISPLAYS a ContentPart → assign "object" format ContentPart -- If section's generationHint or purpose relates to a ContentPart listed above → it MUST have contentPartIds assigned -- If chapter's generationHint references documents/images/data AND section generates content for that chapter → section MUST assign relevant ContentParts -- Empty contentPartIds [] are only allowed if section generates content WITHOUT referencing any available ContentParts AND WITHOUT relating to chapter's generationHint - -## ACCEPTED CONTENT TYPES FOR THIS FORMAT -The document output format (txt) accepts only the following content types: -table, bullet_list, heading, paragraph, code_block - -**CRITICAL**: Only create sections with content types from this list. Other types will fail. - -useAiCall RULE (simple): -- useAiCall: true → Content needs AI processing (extract, transform, generate, filter, summarize) -- useAiCall: false → Content can be inserted directly without changes (Format is "object" or "reference") - -RETURN JSON: -{ - "sections": [ - { - "id": "section_1", - "content_type": "table", - "contentPartIds": ["extracted_part_id"], - "generationHint": "Description of what to extract or generate", - "useAiCall": true, - "elements": [] - } - ] -} - -**MANDATORY CONTENT ASSIGNMENT CHECK:** -For each section, verify: -1. Are ContentParts listed in AVAILABLE CONTENT PARTS above? -2. Does this section's generationHint or purpose relate to those ContentParts? -3. If YES to both → section MUST have contentPartIds assigned (cannot be empty []) -4. Assign ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above - -IMAGE SECTIONS: -- For image sections, always provide a "caption" field with a descriptive caption for the image. - -Return only valid JSON. Do not include any explanatory text outside the JSON. diff --git a/prompts/20260322-180233-238-chapter_structure_chapter_2_prompt.txt b/prompts/20260322-180233-238-chapter_structure_chapter_2_prompt.txt deleted file mode 100644 index 08d4ec02..00000000 --- a/prompts/20260322-180233-238-chapter_structure_chapter_2_prompt.txt +++ /dev/null @@ -1,73 +0,0 @@ -TASK: Generate Chapter Sections Structure - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -CHAPTER: Hauptteil (Level 1, ID: chapter_2) -GENERATION HINT: Hauptteil der E-Mail mit den wesentlichen Informationen und Details. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT sections: Focus on essential information only -- AVOID creating too many sections - combine related content where possible -- Each section should serve a clear purpose with meaningful data -- If no relevant data exists for a topic, do NOT create a section for it -- Prefer ONE comprehensive section over multiple sparse sections -- HARD LIMIT: Maximum 5 sections per chapter. Combine related subtopics into single sections to stay within this limit. - -**CRITICAL**: The chapter's generationHint above describes what content this chapter should generate. If the generationHint references documents/images/data, then EACH section that generates content for this chapter MUST assign the relevant ContentParts from AVAILABLE CONTENT PARTS below. - -NOTE: Chapter already has a heading section. Do NOT generate a heading for the chapter title. - -## SECTION INDEPENDENCE -- Each section is independent and self-contained -- One section does NOT have information about another section -- Each section must provide its own context and be understandable alone - -AVAILABLE CONTENT PARTS: - -(No content parts specified for this chapter) - -## CONTENT ASSIGNMENT RULE - CRITICAL -If AVAILABLE CONTENT PARTS are listed above, then EVERY section that generates content related to those ContentParts MUST assign them explicitly. - -**Assignment logic:** -- If section generates text content ABOUT a ContentPart → assign "extracted" format ContentPart with appropriate instruction -- If section DISPLAYS a ContentPart → assign "object" format ContentPart -- If section's generationHint or purpose relates to a ContentPart listed above → it MUST have contentPartIds assigned -- If chapter's generationHint references documents/images/data AND section generates content for that chapter → section MUST assign relevant ContentParts -- Empty contentPartIds [] are only allowed if section generates content WITHOUT referencing any available ContentParts AND WITHOUT relating to chapter's generationHint - -## ACCEPTED CONTENT TYPES FOR THIS FORMAT -The document output format (txt) accepts only the following content types: -table, bullet_list, heading, paragraph, code_block - -**CRITICAL**: Only create sections with content types from this list. Other types will fail. - -useAiCall RULE (simple): -- useAiCall: true → Content needs AI processing (extract, transform, generate, filter, summarize) -- useAiCall: false → Content can be inserted directly without changes (Format is "object" or "reference") - -RETURN JSON: -{ - "sections": [ - { - "id": "section_1", - "content_type": "table", - "contentPartIds": ["extracted_part_id"], - "generationHint": "Description of what to extract or generate", - "useAiCall": true, - "elements": [] - } - ] -} - -**MANDATORY CONTENT ASSIGNMENT CHECK:** -For each section, verify: -1. Are ContentParts listed in AVAILABLE CONTENT PARTS above? -2. Does this section's generationHint or purpose relate to those ContentParts? -3. If YES to both → section MUST have contentPartIds assigned (cannot be empty []) -4. Assign ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above - -IMAGE SECTIONS: -- For image sections, always provide a "caption" field with a descriptive caption for the image. - -Return only valid JSON. Do not include any explanatory text outside the JSON. diff --git a/prompts/20260322-180233-239-chapter_structure_chapter_3_prompt.txt b/prompts/20260322-180233-239-chapter_structure_chapter_3_prompt.txt deleted file mode 100644 index dec72be3..00000000 --- a/prompts/20260322-180233-239-chapter_structure_chapter_3_prompt.txt +++ /dev/null @@ -1,73 +0,0 @@ -TASK: Generate Chapter Sections Structure - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -CHAPTER: Schluss (Level 1, ID: chapter_3) -GENERATION HINT: Abschluss der E-Mail mit einer Zusammenfassung und einem freundlichen Abschiedsgruß. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT sections: Focus on essential information only -- AVOID creating too many sections - combine related content where possible -- Each section should serve a clear purpose with meaningful data -- If no relevant data exists for a topic, do NOT create a section for it -- Prefer ONE comprehensive section over multiple sparse sections -- HARD LIMIT: Maximum 5 sections per chapter. Combine related subtopics into single sections to stay within this limit. - -**CRITICAL**: The chapter's generationHint above describes what content this chapter should generate. If the generationHint references documents/images/data, then EACH section that generates content for this chapter MUST assign the relevant ContentParts from AVAILABLE CONTENT PARTS below. - -NOTE: Chapter already has a heading section. Do NOT generate a heading for the chapter title. - -## SECTION INDEPENDENCE -- Each section is independent and self-contained -- One section does NOT have information about another section -- Each section must provide its own context and be understandable alone - -AVAILABLE CONTENT PARTS: - -(No content parts specified for this chapter) - -## CONTENT ASSIGNMENT RULE - CRITICAL -If AVAILABLE CONTENT PARTS are listed above, then EVERY section that generates content related to those ContentParts MUST assign them explicitly. - -**Assignment logic:** -- If section generates text content ABOUT a ContentPart → assign "extracted" format ContentPart with appropriate instruction -- If section DISPLAYS a ContentPart → assign "object" format ContentPart -- If section's generationHint or purpose relates to a ContentPart listed above → it MUST have contentPartIds assigned -- If chapter's generationHint references documents/images/data AND section generates content for that chapter → section MUST assign relevant ContentParts -- Empty contentPartIds [] are only allowed if section generates content WITHOUT referencing any available ContentParts AND WITHOUT relating to chapter's generationHint - -## ACCEPTED CONTENT TYPES FOR THIS FORMAT -The document output format (txt) accepts only the following content types: -table, bullet_list, heading, paragraph, code_block - -**CRITICAL**: Only create sections with content types from this list. Other types will fail. - -useAiCall RULE (simple): -- useAiCall: true → Content needs AI processing (extract, transform, generate, filter, summarize) -- useAiCall: false → Content can be inserted directly without changes (Format is "object" or "reference") - -RETURN JSON: -{ - "sections": [ - { - "id": "section_1", - "content_type": "table", - "contentPartIds": ["extracted_part_id"], - "generationHint": "Description of what to extract or generate", - "useAiCall": true, - "elements": [] - } - ] -} - -**MANDATORY CONTENT ASSIGNMENT CHECK:** -For each section, verify: -1. Are ContentParts listed in AVAILABLE CONTENT PARTS above? -2. Does this section's generationHint or purpose relate to those ContentParts? -3. If YES to both → section MUST have contentPartIds assigned (cannot be empty []) -4. Assign ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above - -IMAGE SECTIONS: -- For image sections, always provide a "caption" field with a descriptive caption for the image. - -Return only valid JSON. Do not include any explanatory text outside the JSON. diff --git a/prompts/20260322-180236-240-chapter_structure_chapter_3_response.txt b/prompts/20260322-180236-240-chapter_structure_chapter_3_response.txt deleted file mode 100644 index 4f94acef..00000000 --- a/prompts/20260322-180236-240-chapter_structure_chapter_3_response.txt +++ /dev/null @@ -1,26 +0,0 @@ -```json -{ - "sections": [ - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Zusammenfassung der wichtigsten Punkte der E-Mail", - "useAiCall": true, - "elements": [ - "In dieser E-Mail haben wir die wesentlichen Aspekte unserer Zusammenarbeit besprochen. Wir haben die Fortschritte der letzten Wochen hervorgehoben und die nächsten Schritte für das Projekt festgelegt. Es ist wichtig, dass wir weiterhin eng zusammenarbeiten, um die gesteckten Ziele zu erreichen." - ] - }, - { - "id": "section_2", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Freundlicher Abschiedsgruß", - "useAiCall": true, - "elements": [ - "Ich danke Ihnen für Ihre Aufmerksamkeit und freue mich auf unsere weitere Zusammenarbeit. Bei Fragen oder Anmerkungen stehe ich Ihnen jederzeit gerne zur Verfügung. Mit freundlichen Grüßen, [Ihr Name]" - ] - } - ] -} -``` \ No newline at end of file diff --git a/prompts/20260322-180238-241-chapter_structure_chapter_1_response.txt b/prompts/20260322-180238-241-chapter_structure_chapter_1_response.txt deleted file mode 100644 index 74c8aa3a..00000000 --- a/prompts/20260322-180238-241-chapter_structure_chapter_1_response.txt +++ /dev/null @@ -1,40 +0,0 @@ -```json -{ - "sections": [ - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Einführung in das Thema der E-Mail und Begrüßung des Lesers", - "useAiCall": true, - "elements": [ - "Sehr geehrte Damen und Herren,", - "Willkommen zu unserer Einführung in das Thema der E-Mail-Kommunikation. In dieser Einführung werden wir die wichtigsten Aspekte und Vorteile der E-Mail als Kommunikationsmittel beleuchten. E-Mails sind aus unserem täglichen Leben nicht mehr wegzudenken und bieten eine schnelle und effiziente Möglichkeit, Informationen auszutauschen." - ] - }, - { - "id": "section_2", - "content_type": "bullet_list", - "contentPartIds": [], - "generationHint": "Hauptvorteile der E-Mail-Kommunikation", - "useAiCall": true, - "elements": [ - "Schnelligkeit und Effizienz im Informationsaustausch", - "Möglichkeit zur Kommunikation über große Entfernungen", - "Einfache Dokumentation und Archivierung von Nachrichten", - "Kostengünstige Alternative zu traditionellen Kommunikationsmitteln" - ] - }, - { - "id": "section_3", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Zusammenfassung und Ausblick auf die folgenden Kapitel", - "useAiCall": true, - "elements": [ - "Zusammenfassend lässt sich sagen, dass die E-Mail-Kommunikation eine unverzichtbare Rolle in der modernen Kommunikation spielt. In den folgenden Kapiteln werden wir tiefer in die verschiedenen Aspekte der E-Mail-Nutzung eintauchen und praktische Tipps zur Verbesserung Ihrer E-Mail-Kommunikationsfähigkeiten geben." - ] - } - ] -} -``` \ No newline at end of file diff --git a/prompts/20260322-180240-242-chapter_structure_chapter_2_response.txt b/prompts/20260322-180240-242-chapter_structure_chapter_2_response.txt deleted file mode 100644 index 9d0c7dcc..00000000 --- a/prompts/20260322-180240-242-chapter_structure_chapter_2_response.txt +++ /dev/null @@ -1,67 +0,0 @@ -```json -{ - "sections": [ - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Einleitung des Hauptteils mit einer kurzen Zusammenfassung der E-Mail-Inhalte.", - "useAiCall": true, - "elements": [ - "In diesem Abschnitt der E-Mail werden die wichtigsten Informationen und Details präsentiert, die für den Empfänger von Bedeutung sind. Ziel ist es, einen klaren Überblick über die wesentlichen Punkte zu geben, die im weiteren Verlauf detaillierter behandelt werden." - ] - }, - { - "id": "section_2", - "content_type": "bullet_list", - "contentPartIds": [], - "generationHint": "Auflistung der Hauptpunkte oder Themen, die in der E-Mail behandelt werden.", - "useAiCall": true, - "elements": [ - "Ziel der E-Mail", - "Wichtige Termine und Fristen", - "Erforderliche Aktionen des Empfängers", - "Zusammenfassung der bisherigen Kommunikation", - "Kontaktinformationen für Rückfragen" - ] - }, - { - "id": "section_3", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Detaillierte Beschreibung eines spezifischen Themas oder Punktes, der in der E-Mail behandelt wird.", - "useAiCall": true, - "elements": [ - "Ein zentraler Punkt dieser E-Mail ist die bevorstehende Frist für die Einreichung der erforderlichen Dokumente. Es ist wichtig, dass alle Unterlagen bis zum angegebenen Datum vollständig eingereicht werden, um Verzögerungen im Prozess zu vermeiden. Bitte beachten Sie die angehängten Anweisungen zur korrekten Einreichung." - ] - }, - { - "id": "section_4", - "content_type": "table", - "contentPartIds": [], - "generationHint": "Tabelle mit wichtigen Daten oder Fristen, die in der E-Mail erwähnt werden.", - "useAiCall": true, - "elements": [ - { - "headers": ["Datum", "Ereignis", "Beschreibung"], - "rows": [ - ["01.11.2023", "Einreichungsfrist", "Letzter Tag zur Einreichung der Dokumente"], - ["15.11.2023", "Feedback-Runde", "Rückmeldung zu den eingereichten Unterlagen"], - ["30.11.2023", "Abschlussbesprechung", "Endgültige Besprechung der Ergebnisse"] - ] - } - ] - }, - { - "id": "section_5", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Abschließende Bemerkungen und nächste Schritte für den Empfänger.", - "useAiCall": true, - "elements": [ - "Zum Abschluss möchten wir Sie bitten, die genannten Fristen einzuhalten und bei Fragen oder Unklarheiten umgehend Kontakt mit uns aufzunehmen. Wir stehen Ihnen jederzeit für Rückfragen zur Verfügung und freuen uns auf eine erfolgreiche Zusammenarbeit." - ] - } - ] -} -``` \ No newline at end of file diff --git a/prompts/20260322-180240-243-chapter_1_section_section_1_prompt.txt b/prompts/20260322-180240-243-chapter_1_section_section_1_prompt.txt deleted file mode 100644 index 7320e8af..00000000 --- a/prompts/20260322-180240-243-chapter_1_section_section_1_prompt.txt +++ /dev/null @@ -1,56 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_1 -- Content Type: paragraph -- Generation Hint: Einführung in das Thema der E-Mail und Begrüßung des Lesers -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Following sections: -- section_2 (bullet_list): -- section_3 (paragraph): - diff --git a/prompts/20260322-180240-244-chapter_1_section_section_2_prompt.txt b/prompts/20260322-180240-244-chapter_1_section_section_2_prompt.txt deleted file mode 100644 index 6bcb7c7f..00000000 --- a/prompts/20260322-180240-244-chapter_1_section_section_2_prompt.txt +++ /dev/null @@ -1,59 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_2 -- Content Type: bullet_list -- Generation Hint: Hauptvorteile der E-Mail-Kommunikation -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (bullet_list). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "bullet_list", - "content": {{"items": ["Item 1", "Item 2", "Item 3"]}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): - -Following sections: -- section_3 (paragraph): -- section_1 (paragraph): - diff --git a/prompts/20260322-180241-245-chapter_1_section_section_3_prompt.txt b/prompts/20260322-180241-245-chapter_1_section_section_3_prompt.txt deleted file mode 100644 index 2ac7a290..00000000 --- a/prompts/20260322-180241-245-chapter_1_section_section_3_prompt.txt +++ /dev/null @@ -1,60 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_3 -- Content Type: paragraph -- Generation Hint: Zusammenfassung und Ausblick auf die folgenden Kapitel -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): -- section_2 (bullet_list): - -Following sections: -- section_1 (paragraph): -- section_2 (bullet_list): - diff --git a/prompts/20260322-180241-246-chapter_2_section_section_1_prompt.txt b/prompts/20260322-180241-246-chapter_2_section_section_1_prompt.txt deleted file mode 100644 index 246981cb..00000000 --- a/prompts/20260322-180241-246-chapter_2_section_section_1_prompt.txt +++ /dev/null @@ -1,56 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_1 -- Content Type: paragraph -- Generation Hint: Einleitung des Hauptteils mit einer kurzen Zusammenfassung der E-Mail-Inhalte. -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Following sections: -- section_2 (bullet_list): -- section_3 (paragraph): - diff --git a/prompts/20260322-180241-247-chapter_2_section_section_2_prompt.txt b/prompts/20260322-180241-247-chapter_2_section_section_2_prompt.txt deleted file mode 100644 index d663015d..00000000 --- a/prompts/20260322-180241-247-chapter_2_section_section_2_prompt.txt +++ /dev/null @@ -1,59 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_2 -- Content Type: bullet_list -- Generation Hint: Auflistung der Hauptpunkte oder Themen, die in der E-Mail behandelt werden. -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (bullet_list). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "bullet_list", - "content": {{"items": ["Item 1", "Item 2", "Item 3"]}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): - -Following sections: -- section_3 (paragraph): -- section_1 (paragraph): - diff --git a/prompts/20260322-180242-248-chapter_1_section_section_1_response.txt b/prompts/20260322-180242-248-chapter_1_section_section_1_response.txt deleted file mode 100644 index d974158b..00000000 --- a/prompts/20260322-180242-248-chapter_1_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Sehr geehrter Leser, wir freuen uns, Ihnen eine Einführung in das Thema unserer E-Mail zu geben. Diese Nachricht enthält wichtige Informationen, die für Sie von Interesse sein könnten. Bitte lesen Sie weiter, um mehr zu erfahren." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180242-249-chapter_1_section_section_1_response.txt b/prompts/20260322-180242-249-chapter_1_section_section_1_response.txt deleted file mode 100644 index d974158b..00000000 --- a/prompts/20260322-180242-249-chapter_1_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Sehr geehrter Leser, wir freuen uns, Ihnen eine Einführung in das Thema unserer E-Mail zu geben. Diese Nachricht enthält wichtige Informationen, die für Sie von Interesse sein könnten. Bitte lesen Sie weiter, um mehr zu erfahren." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180242-250-chapter_2_section_section_3_prompt.txt b/prompts/20260322-180242-250-chapter_2_section_section_3_prompt.txt deleted file mode 100644 index 4b93dd44..00000000 --- a/prompts/20260322-180242-250-chapter_2_section_section_3_prompt.txt +++ /dev/null @@ -1,60 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_3 -- Content Type: paragraph -- Generation Hint: Detaillierte Beschreibung eines spezifischen Themas oder Punktes, der in der E-Mail behandelt wird. -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): -- section_2 (bullet_list): - -Following sections: -- section_1 (paragraph): -- section_2 (bullet_list): - diff --git a/prompts/20260322-180242-251-chapter_2_section_section_2_response.txt b/prompts/20260322-180242-251-chapter_2_section_section_2_response.txt deleted file mode 100644 index f68398fb..00000000 --- a/prompts/20260322-180242-251-chapter_2_section_section_2_response.txt +++ /dev/null @@ -1,16 +0,0 @@ -{ - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Begrüßung und Vorstellung des Themas", - "Kurze Zusammenfassung der wichtigsten Punkte", - "Detaillierte Informationen zu jedem Punkt", - "Schlussfolgerung und nächste Schritte", - "Kontaktinformationen für Rückfragen" - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180242-252-chapter_2_section_section_2_response.txt b/prompts/20260322-180242-252-chapter_2_section_section_2_response.txt deleted file mode 100644 index f68398fb..00000000 --- a/prompts/20260322-180242-252-chapter_2_section_section_2_response.txt +++ /dev/null @@ -1,16 +0,0 @@ -{ - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Begrüßung und Vorstellung des Themas", - "Kurze Zusammenfassung der wichtigsten Punkte", - "Detaillierte Informationen zu jedem Punkt", - "Schlussfolgerung und nächste Schritte", - "Kontaktinformationen für Rückfragen" - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180242-253-chapter_2_section_section_4_prompt.txt b/prompts/20260322-180242-253-chapter_2_section_section_4_prompt.txt deleted file mode 100644 index 6427cd08..00000000 --- a/prompts/20260322-180242-253-chapter_2_section_section_4_prompt.txt +++ /dev/null @@ -1,60 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_4 -- Content Type: table -- Generation Hint: Tabelle mit wichtigen Daten oder Fristen, die in der E-Mail erwähnt werden. -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (table). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "table", - "content": {{"headers": ["Column1", "Column2"], "rows": [["Value1", "Value2"], ["Value3", "Value4"]]}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_2 (bullet_list): -- section_3 (paragraph): - -Following sections: -- section_2 (bullet_list): -- section_3 (paragraph): - diff --git a/prompts/20260322-180243-254-chapter_1_section_section_2_response.txt b/prompts/20260322-180243-254-chapter_1_section_section_2_response.txt deleted file mode 100644 index e7ce17bb..00000000 --- a/prompts/20260322-180243-254-chapter_1_section_section_2_response.txt +++ /dev/null @@ -1,18 +0,0 @@ -{ - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Schnelligkeit der Übermittlung", - "Kosteneffizienz im Vergleich zu physischen Briefen", - "Einfache Archivierung und Nachverfolgung", - "Möglichkeit zur Massenkommunikation", - "Umweltfreundlich durch Papierersparnis", - "Flexibilität durch Zugriff von überall", - "Einfache Integration von Anhängen und Multimedia" - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180243-255-chapter_1_section_section_2_response.txt b/prompts/20260322-180243-255-chapter_1_section_section_2_response.txt deleted file mode 100644 index e7ce17bb..00000000 --- a/prompts/20260322-180243-255-chapter_1_section_section_2_response.txt +++ /dev/null @@ -1,18 +0,0 @@ -{ - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Schnelligkeit der Übermittlung", - "Kosteneffizienz im Vergleich zu physischen Briefen", - "Einfache Archivierung und Nachverfolgung", - "Möglichkeit zur Massenkommunikation", - "Umweltfreundlich durch Papierersparnis", - "Flexibilität durch Zugriff von überall", - "Einfache Integration von Anhängen und Multimedia" - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180243-256-chapter_2_section_section_5_prompt.txt b/prompts/20260322-180243-256-chapter_2_section_section_5_prompt.txt deleted file mode 100644 index ec94b141..00000000 --- a/prompts/20260322-180243-256-chapter_2_section_section_5_prompt.txt +++ /dev/null @@ -1,60 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_5 -- Content Type: paragraph -- Generation Hint: Abschließende Bemerkungen und nächste Schritte für den Empfänger. -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_3 (paragraph): -- section_1 (paragraph): - -Following sections: -- section_3 (paragraph): -- section_4 (table): - diff --git a/prompts/20260322-180243-257-chapter_2_section_section_1_response.txt b/prompts/20260322-180243-257-chapter_2_section_section_1_response.txt deleted file mode 100644 index 8b549ba7..00000000 --- a/prompts/20260322-180243-257-chapter_2_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Die E-Mail beginnt mit einer Begrüßung und stellt kurz den Zweck der Nachricht vor. Es folgt eine Zusammenfassung der wichtigsten Punkte aus dem vorherigen Dokument, einschließlich der Hauptthemen und relevanter Details. Abschließend wird auf mögliche nächste Schritte oder erforderliche Maßnahmen hingewiesen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180243-258-chapter_2_section_section_1_response.txt b/prompts/20260322-180243-258-chapter_2_section_section_1_response.txt deleted file mode 100644 index 8b549ba7..00000000 --- a/prompts/20260322-180243-258-chapter_2_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Die E-Mail beginnt mit einer Begrüßung und stellt kurz den Zweck der Nachricht vor. Es folgt eine Zusammenfassung der wichtigsten Punkte aus dem vorherigen Dokument, einschließlich der Hauptthemen und relevanter Details. Abschließend wird auf mögliche nächste Schritte oder erforderliche Maßnahmen hingewiesen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180243-259-chapter_3_section_section_1_prompt.txt b/prompts/20260322-180243-259-chapter_3_section_section_1_prompt.txt deleted file mode 100644 index 31b1a81c..00000000 --- a/prompts/20260322-180243-259-chapter_3_section_section_1_prompt.txt +++ /dev/null @@ -1,56 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_1 -- Content Type: paragraph -- Generation Hint: Zusammenfassung der wichtigsten Punkte der E-Mail -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Following sections: -- section_2 (bullet_list): -- section_3 (paragraph): - diff --git a/prompts/20260322-180243-260-chapter_1_section_section_3_response.txt b/prompts/20260322-180243-260-chapter_1_section_section_3_response.txt deleted file mode 100644 index 2924f742..00000000 --- a/prompts/20260322-180243-260-chapter_1_section_section_3_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "In den vorherigen Kapiteln wurden die Grundlagen und die wichtigsten Konzepte eingeführt. Im nächsten Abschnitt werden wir tiefer in die spezifischen Anwendungsfälle eintauchen und praktische Beispiele analysieren. Dabei liegt der Fokus auf der Umsetzung der theoretischen Ansätze in realen Szenarien. Ziel ist es, ein umfassendes Verständnis für die Anwendung der erlernten Prinzipien zu entwickeln und die Fähigkeit zu stärken, diese in unterschiedlichen Kontexten anzuwenden." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180243-261-chapter_1_section_section_3_response.txt b/prompts/20260322-180243-261-chapter_1_section_section_3_response.txt deleted file mode 100644 index 2924f742..00000000 --- a/prompts/20260322-180243-261-chapter_1_section_section_3_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "In den vorherigen Kapiteln wurden die Grundlagen und die wichtigsten Konzepte eingeführt. Im nächsten Abschnitt werden wir tiefer in die spezifischen Anwendungsfälle eintauchen und praktische Beispiele analysieren. Dabei liegt der Fokus auf der Umsetzung der theoretischen Ansätze in realen Szenarien. Ziel ist es, ein umfassendes Verständnis für die Anwendung der erlernten Prinzipien zu entwickeln und die Fähigkeit zu stärken, diese in unterschiedlichen Kontexten anzuwenden." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180243-262-chapter_3_section_section_2_prompt.txt b/prompts/20260322-180243-262-chapter_3_section_section_2_prompt.txt deleted file mode 100644 index f08a5ded..00000000 --- a/prompts/20260322-180243-262-chapter_3_section_section_2_prompt.txt +++ /dev/null @@ -1,59 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_2 -- Content Type: paragraph -- Generation Hint: Freundlicher Abschiedsgruß -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): - -Following sections: -- section_3 (paragraph): -- section_1 (paragraph): - diff --git a/prompts/20260322-180244-263-chapter_2_section_section_3_response.txt b/prompts/20260322-180244-263-chapter_2_section_section_3_response.txt deleted file mode 100644 index 78c065da..00000000 --- a/prompts/20260322-180244-263-chapter_2_section_section_3_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "In diesem Abschnitt wird die Bedeutung der Datensicherheit in der digitalen Kommunikation hervorgehoben. Es ist entscheidend, dass alle sensiblen Informationen durch geeignete Verschlüsselungsmethoden geschützt werden, um unbefugten Zugriff zu verhindern. Unternehmen sollten regelmäßig ihre Sicherheitsprotokolle überprüfen und aktualisieren, um den neuesten Bedrohungen entgegenzuwirken. Darüber hinaus ist die Schulung der Mitarbeiter im Umgang mit vertraulichen Daten ein wesentlicher Bestandteil eines umfassenden Sicherheitskonzepts." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180244-264-chapter_2_section_section_3_response.txt b/prompts/20260322-180244-264-chapter_2_section_section_3_response.txt deleted file mode 100644 index 78c065da..00000000 --- a/prompts/20260322-180244-264-chapter_2_section_section_3_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "In diesem Abschnitt wird die Bedeutung der Datensicherheit in der digitalen Kommunikation hervorgehoben. Es ist entscheidend, dass alle sensiblen Informationen durch geeignete Verschlüsselungsmethoden geschützt werden, um unbefugten Zugriff zu verhindern. Unternehmen sollten regelmäßig ihre Sicherheitsprotokolle überprüfen und aktualisieren, um den neuesten Bedrohungen entgegenzuwirken. Darüber hinaus ist die Schulung der Mitarbeiter im Umgang mit vertraulichen Daten ein wesentlicher Bestandteil eines umfassenden Sicherheitskonzepts." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180244-265-chapter_2_section_section_4_response.txt b/prompts/20260322-180244-265-chapter_2_section_section_4_response.txt deleted file mode 100644 index dd8cbf46..00000000 --- a/prompts/20260322-180244-265-chapter_2_section_section_4_response.txt +++ /dev/null @@ -1,16 +0,0 @@ -{ - "elements": [ - { - "type": "table", - "content": { - "headers": ["Datum", "Ereignis"], - "rows": [ - ["01.11.2023", "Abgabefrist für Projektanträge"], - ["15.11.2023", "Rückmeldung zu eingereichten Anträgen"], - ["30.11.2023", "Ende der Bewerbungsfrist für Fördermittel"], - ["15.12.2023", "Bekanntgabe der Fördermittelvergabe"] - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180244-266-chapter_2_section_section_4_response.txt b/prompts/20260322-180244-266-chapter_2_section_section_4_response.txt deleted file mode 100644 index cc611352..00000000 --- a/prompts/20260322-180244-266-chapter_2_section_section_4_response.txt +++ /dev/null @@ -1,31 +0,0 @@ -{ - "elements": [ - { - "type": "table", - "content": { - "headers": [ - "Datum", - "Ereignis" - ], - "rows": [ - [ - "01.11.2023", - "Abgabefrist für Projektanträge" - ], - [ - "15.11.2023", - "Rückmeldung zu eingereichten Anträgen" - ], - [ - "30.11.2023", - "Ende der Bewerbungsfrist für Fördermittel" - ], - [ - "15.12.2023", - "Bekanntgabe der Fördermittelvergabe" - ] - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180244-267-chapter_2_section_section_5_response.txt b/prompts/20260322-180244-267-chapter_2_section_section_5_response.txt deleted file mode 100644 index 74127d5b..00000000 --- a/prompts/20260322-180244-267-chapter_2_section_section_5_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Abschließend möchten wir uns für Ihre Aufmerksamkeit und Ihr Interesse an unserem Projekt bedanken. Wir hoffen, dass die bereitgestellten Informationen hilfreich waren und freuen uns auf Ihre Rückmeldungen. Als nächsten Schritt empfehlen wir, die vorgeschlagenen Maßnahmen zu evaluieren und einen Zeitplan für die Umsetzung zu erstellen. Bei Fragen oder weiteren Anliegen stehen wir Ihnen jederzeit zur Verfügung." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180244-268-chapter_2_section_section_5_response.txt b/prompts/20260322-180244-268-chapter_2_section_section_5_response.txt deleted file mode 100644 index 74127d5b..00000000 --- a/prompts/20260322-180244-268-chapter_2_section_section_5_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Abschließend möchten wir uns für Ihre Aufmerksamkeit und Ihr Interesse an unserem Projekt bedanken. Wir hoffen, dass die bereitgestellten Informationen hilfreich waren und freuen uns auf Ihre Rückmeldungen. Als nächsten Schritt empfehlen wir, die vorgeschlagenen Maßnahmen zu evaluieren und einen Zeitplan für die Umsetzung zu erstellen. Bei Fragen oder weiteren Anliegen stehen wir Ihnen jederzeit zur Verfügung." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180244-269-chapter_3_section_section_1_response.txt b/prompts/20260322-180244-269-chapter_3_section_section_1_response.txt deleted file mode 100644 index de6ce126..00000000 --- a/prompts/20260322-180244-269-chapter_3_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Die E-Mail fasst die wichtigsten Punkte zusammen: Der aktuelle Projektstatus wird erläutert, einschließlich der erreichten Meilensteine und der verbleibenden Aufgaben. Es wird auf die nächsten Schritte eingegangen und die Verantwortlichkeiten der Teammitglieder werden hervorgehoben. Zudem werden Fristen und mögliche Herausforderungen angesprochen, um eine reibungslose Umsetzung zu gewährleisten. Abschließend wird um Feedback und weitere Anregungen gebeten, um den Fortschritt kontinuierlich zu verbessern." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180244-270-chapter_3_section_section_1_response.txt b/prompts/20260322-180244-270-chapter_3_section_section_1_response.txt deleted file mode 100644 index de6ce126..00000000 --- a/prompts/20260322-180244-270-chapter_3_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Die E-Mail fasst die wichtigsten Punkte zusammen: Der aktuelle Projektstatus wird erläutert, einschließlich der erreichten Meilensteine und der verbleibenden Aufgaben. Es wird auf die nächsten Schritte eingegangen und die Verantwortlichkeiten der Teammitglieder werden hervorgehoben. Zudem werden Fristen und mögliche Herausforderungen angesprochen, um eine reibungslose Umsetzung zu gewährleisten. Abschließend wird um Feedback und weitere Anregungen gebeten, um den Fortschritt kontinuierlich zu verbessern." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180245-271-chapter_3_section_section_2_response.txt b/prompts/20260322-180245-271-chapter_3_section_section_2_response.txt deleted file mode 100644 index de1a12eb..00000000 --- a/prompts/20260322-180245-271-chapter_3_section_section_2_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Vielen Dank für Ihre Zeit und Unterstützung. Es war eine Freude, mit Ihnen zusammenzuarbeiten. Ich wünsche Ihnen alles Gute für Ihre zukünftigen Projekte und hoffe, dass sich unsere Wege bald wieder kreuzen. Bis dahin, passen Sie gut auf sich auf und bleiben Sie gesund. Herzliche Grüße." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180245-272-chapter_3_section_section_2_response.txt b/prompts/20260322-180245-272-chapter_3_section_section_2_response.txt deleted file mode 100644 index de1a12eb..00000000 --- a/prompts/20260322-180245-272-chapter_3_section_section_2_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Vielen Dank für Ihre Zeit und Unterstützung. Es war eine Freude, mit Ihnen zusammenzuarbeiten. Ich wünsche Ihnen alles Gute für Ihre zukünftigen Projekte und hoffe, dass sich unsere Wege bald wieder kreuzen. Bis dahin, passen Sie gut auf sich auf und bleiben Sie gesund. Herzliche Grüße." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180245-273-document_generation_response.txt b/prompts/20260322-180245-273-document_generation_response.txt deleted file mode 100644 index b9c0dc77..00000000 --- a/prompts/20260322-180245-273-document_generation_response.txt +++ /dev/null @@ -1,244 +0,0 @@ -{ - "metadata": { - "title": "E-Mail Entwurf", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "E-Mail Entwurf", - "filename": "email_entwurf.txt", - "outputFormat": "txt", - "language": "de", - "sections": [ - { - "id": "chapter_1_heading", - "content_type": "heading", - "elements": [ - { - "type": "heading", - "content": { - "text": "Einleitung", - "level": 1 - } - } - ] - }, - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Einführung in das Thema der E-Mail und Begrüßung des Lesers", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Sehr geehrter Leser, wir freuen uns, Ihnen eine Einführung in das Thema unserer E-Mail zu geben. Diese Nachricht enthält wichtige Informationen, die für Sie von Interesse sein könnten. Bitte lesen Sie weiter, um mehr zu erfahren." - } - } - ] - }, - { - "id": "section_2", - "content_type": "bullet_list", - "contentPartIds": [], - "generationHint": "Hauptvorteile der E-Mail-Kommunikation", - "useAiCall": true, - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Schnelligkeit der Übermittlung", - "Kosteneffizienz im Vergleich zu physischen Briefen", - "Einfache Archivierung und Nachverfolgung", - "Möglichkeit zur Massenkommunikation", - "Umweltfreundlich durch Papierersparnis", - "Flexibilität durch Zugriff von überall", - "Einfache Integration von Anhängen und Multimedia" - ] - } - } - ] - }, - { - "id": "section_3", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Zusammenfassung und Ausblick auf die folgenden Kapitel", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "In den vorherigen Kapiteln wurden die Grundlagen und die wichtigsten Konzepte eingeführt. Im nächsten Abschnitt werden wir tiefer in die spezifischen Anwendungsfälle eintauchen und praktische Beispiele analysieren. Dabei liegt der Fokus auf der Umsetzung der theoretischen Ansätze in realen Szenarien. Ziel ist es, ein umfassendes Verständnis für die Anwendung der erlernten Prinzipien zu entwickeln und die Fähigkeit zu stärken, diese in unterschiedlichen Kontexten anzuwenden." - } - } - ] - }, - { - "id": "chapter_2_heading", - "content_type": "heading", - "elements": [ - { - "type": "heading", - "content": { - "text": "Hauptteil", - "level": 1 - } - } - ] - }, - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Einleitung des Hauptteils mit einer kurzen Zusammenfassung der E-Mail-Inhalte.", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Die E-Mail beginnt mit einer Begrüßung und stellt kurz den Zweck der Nachricht vor. Es folgt eine Zusammenfassung der wichtigsten Punkte aus dem vorherigen Dokument, einschließlich der Hauptthemen und relevanter Details. Abschließend wird auf mögliche nächste Schritte oder erforderliche Maßnahmen hingewiesen." - } - } - ] - }, - { - "id": "section_2", - "content_type": "bullet_list", - "contentPartIds": [], - "generationHint": "Auflistung der Hauptpunkte oder Themen, die in der E-Mail behandelt werden.", - "useAiCall": true, - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Begrüßung und Vorstellung des Themas", - "Kurze Zusammenfassung der wichtigsten Punkte", - "Detaillierte Informationen zu jedem Punkt", - "Schlussfolgerung und nächste Schritte", - "Kontaktinformationen für Rückfragen" - ] - } - } - ] - }, - { - "id": "section_3", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Detaillierte Beschreibung eines spezifischen Themas oder Punktes, der in der E-Mail behandelt wird.", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "In diesem Abschnitt wird die Bedeutung der Datensicherheit in der digitalen Kommunikation hervorgehoben. Es ist entscheidend, dass alle sensiblen Informationen durch geeignete Verschlüsselungsmethoden geschützt werden, um unbefugten Zugriff zu verhindern. Unternehmen sollten regelmäßig ihre Sicherheitsprotokolle überprüfen und aktualisieren, um den neuesten Bedrohungen entgegenzuwirken. Darüber hinaus ist die Schulung der Mitarbeiter im Umgang mit vertraulichen Daten ein wesentlicher Bestandteil eines umfassenden Sicherheitskonzepts." - } - } - ] - }, - { - "id": "section_4", - "content_type": "table", - "contentPartIds": [], - "generationHint": "Tabelle mit wichtigen Daten oder Fristen, die in der E-Mail erwähnt werden.", - "useAiCall": true, - "elements": [ - { - "type": "table", - "content": { - "headers": [ - "Datum", - "Ereignis" - ], - "rows": [ - [ - "01.11.2023", - "Abgabefrist für Projektanträge" - ], - [ - "15.11.2023", - "Rückmeldung zu eingereichten Anträgen" - ], - [ - "30.11.2023", - "Ende der Bewerbungsfrist für Fördermittel" - ], - [ - "15.12.2023", - "Bekanntgabe der Fördermittelvergabe" - ] - ] - } - } - ] - }, - { - "id": "section_5", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Abschließende Bemerkungen und nächste Schritte für den Empfänger.", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Abschließend möchten wir uns für Ihre Aufmerksamkeit und Ihr Interesse an unserem Projekt bedanken. Wir hoffen, dass die bereitgestellten Informationen hilfreich waren und freuen uns auf Ihre Rückmeldungen. Als nächsten Schritt empfehlen wir, die vorgeschlagenen Maßnahmen zu evaluieren und einen Zeitplan für die Umsetzung zu erstellen. Bei Fragen oder weiteren Anliegen stehen wir Ihnen jederzeit zur Verfügung." - } - } - ] - }, - { - "id": "chapter_3_heading", - "content_type": "heading", - "elements": [ - { - "type": "heading", - "content": { - "text": "Schluss", - "level": 1 - } - } - ] - }, - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Zusammenfassung der wichtigsten Punkte der E-Mail", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Die E-Mail fasst die wichtigsten Punkte zusammen: Der aktuelle Projektstatus wird erläutert, einschließlich der erreichten Meilensteine und der verbleibenden Aufgaben. Es wird auf die nächsten Schritte eingegangen und die Verantwortlichkeiten der Teammitglieder werden hervorgehoben. Zudem werden Fristen und mögliche Herausforderungen angesprochen, um eine reibungslose Umsetzung zu gewährleisten. Abschließend wird um Feedback und weitere Anregungen gebeten, um den Fortschritt kontinuierlich zu verbessern." - } - } - ] - }, - { - "id": "section_2", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Freundlicher Abschiedsgruß", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Vielen Dank für Ihre Zeit und Unterstützung. Es war eine Freude, mit Ihnen zusammenzuarbeiten. Ich wünsche Ihnen alles Gute für Ihre zukünftigen Projekte und hoffe, dass sich unsere Wege bald wieder kreuzen. Bis dahin, passen Sie gut auf sich auf und bleiben Sie gesund. Herzliche Grüße." - } - } - ] - } - ], - "metadata": { - "outputStyle": "document" - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180246-274-email_composition_prompt.txt b/prompts/20260322-180246-274-email_composition_prompt.txt deleted file mode 100644 index 588b291d..00000000 --- a/prompts/20260322-180246-274-email_composition_prompt.txt +++ /dev/null @@ -1,22 +0,0 @@ -Compose an email based on this context: -------- -E-Mail Entwurf\n==============\n\nEinleitung\n==========\n\nSehr geehrter Leser, wir freuen uns, Ihnen eine Einführung in das Thema unserer E-Mail zu geben. Diese Nachricht enthält wichtige Informationen, die für Sie von Interesse sein könnten. Bitte lesen Sie weiter, um mehr zu erfahren.\n\n- Schnelligkeit der Übermittlung\n- Kosteneffizienz im Vergleich zu physischen Briefen\n- Einfache Archivierung und Nachverfolgung\n- Möglichkeit zur Massenkommunikation\n- Umweltfreundlich durch Papierersparnis\n- Flexibilität durch Zugriff von überall\n- Einfache Integration von Anhängen und Multimedia\n\nIn den vorherigen Kapiteln wurden die Grundlagen und die wichtigsten Konzepte eingeführt. Im nächsten Abschnitt werden wir tiefer in die spezifischen Anwendungsfälle eintauchen und praktische Beispiele analysieren. Dabei liegt der Fokus auf der Umsetzung der theoretischen Ansätze in realen Szenarien. Ziel ist es, ein umfassendes Verständnis für die Anwendung der erlernten Prinzipien zu entwickeln und die Fähigkeit zu stärken, diese in unterschiedlichen Kontexten anzuwenden.\n\nHauptteil\n=========\n\nDie E-Mail beginnt mit einer Begrüßung und stellt kurz den Zweck der Nachricht vor. Es folgt eine Zusammenfassung der wichtigsten Punkte aus dem vorherigen Dokument, einschließlich der Hauptthemen und relevanter Details. Abschließend wird auf mögliche nächste Schritte oder erforderliche Maßnahmen hingewiesen.\n\n- Begrüßung und Vorstellung des Themas\n- Kurze Zusammenfassung der wichtigsten Punkte\n- Detaillierte Informationen zu jedem Punkt\n- Schlussfolgerung und nächste Schritte\n- Kontaktinformationen für Rückfragen\n\nIn diesem Abschnitt wird die Bedeutung der Datensicherheit in der digitalen Kommunikation hervorgehoben. Es ist entscheidend, dass alle sensiblen Informationen durch geeignete Verschlüsselungsmethoden geschützt werden, um unbefugten Zugriff zu verhindern. Unternehmen sollten regelmäßig ihre Sicherheitsprotokolle überprüfen und aktualisieren, um den neuesten Bedrohungen entgegenzuwirken. Darüber hinaus ist die Schulung der Mitarbeiter im Umgang mit vertraulichen Daten ein wesentlicher Bestandteil eines umfassenden Sicherheitskonzepts.\n\nDatum | Ereignis\n----- | --------\n01.11.2023 | Abgabefrist für Projektanträge\n15.11.2023 | Rückmeldung zu eingereichten Anträgen\n30.11.2023 | Ende der Bewerbungsfrist für Fördermittel\n15.12.2023 | Bekanntgabe der Fördermittelvergabe\n\nAbschließend möchten wir uns für Ihre Aufmerksamkeit und Ihr Interesse an unserem Projekt bedanken. Wir hoffen, dass die bereitgestellten Informationen hilfreich waren und freuen uns auf Ihre Rückmeldungen. Als nächsten Schritt empfehlen wir, die vorgeschlagenen Maßnahmen zu evaluieren und einen Zeitplan für die Umsetzung zu erstellen. Bei Fragen oder weiteren Anliegen stehen wir Ihnen jederzeit zur Verfügung.\n\nSchluss\n=======\n\nDie E-Mail fasst die wichtigsten Punkte zusammen: Der aktuelle Projektstatus wird erläutert, einschließlich der erreichten Meilensteine und der verbleibenden Aufgaben. Es wird auf die nächsten Schritte eingegangen und die Verantwortlichkeiten der Teammitglieder werden hervorgehoben. Zudem werden Fristen und mögliche Herausforderungen angesprochen, um eine reibungslose Umsetzung zu gewährleisten. Abschließend wird um Feedback und weitere Anregungen gebeten, um den Fortschritt kontinuierlich zu verbessern.\n\nVielen Dank für Ihre Zeit und Unterstützung. Es war eine Freude, mit Ihnen zusammenzuarbeiten. Ich wünsche Ihnen alles Gute für Ihre zukünftigen Projekte und hoffe, dass sich unsere Wege bald wieder kreuzen. Bis dahin, passen Sie gut auf sich auf und bleiben Sie gesund. Herzliche Grüße.\n\n\nGenerated: 2026-03-22 18:02:45 UTC -------- - -Recipients: (not specified - this is a draft) -Style: business -Max length: 1000 characters - -Available_Document_References: - - (no documents) - -Based on the context, decide which documents to attach. - -CRITICAL: Use EXACT document references from Available_Document_References above. For individual documents: ALWAYS use docItem:: format (include filename) - -Return JSON: -{ - "subject": "subject line", - "body": "email body (HTML allowed)", - "attachments": ["docItem::"] -} diff --git a/prompts/20260322-180250-275-email_composition_response.txt b/prompts/20260322-180250-275-email_composition_response.txt deleted file mode 100644 index 11327fd5..00000000 --- a/prompts/20260322-180250-275-email_composition_response.txt +++ /dev/null @@ -1,7 +0,0 @@ -```json -{ - "subject": "Einführung in die Vorteile der digitalen Kommunikation", - "body": "

Sehr geehrter Leser,

wir freuen uns, Ihnen eine Einführung in das Thema unserer E-Mail zu geben. Diese Nachricht enthält wichtige Informationen, die für Sie von Interesse sein könnten. Bitte lesen Sie weiter, um mehr zu erfahren.

  • Schnelligkeit der Übermittlung
  • Kosteneffizienz im Vergleich zu physischen Briefen
  • Einfache Archivierung und Nachverfolgung
  • Möglichkeit zur Massenkommunikation
  • Umweltfreundlich durch Papierersparnis
  • Flexibilität durch Zugriff von überall
  • Einfache Integration von Anhängen und Multimedia

In den vorherigen Kapiteln wurden die Grundlagen und die wichtigsten Konzepte eingeführt. Im nächsten Abschnitt werden wir tiefer in die spezifischen Anwendungsfälle eintauchen und praktische Beispiele analysieren.

Die Bedeutung der Datensicherheit in der digitalen Kommunikation wird hervorgehoben. Es ist entscheidend, dass alle sensiblen Informationen durch geeignete Verschlüsselungsmethoden geschützt werden.

Abschließend möchten wir uns für Ihre Aufmerksamkeit und Ihr Interesse an unserem Projekt bedanken. Wir hoffen, dass die bereitgestellten Informationen hilfreich waren und freuen uns auf Ihre Rückmeldungen.

Vielen Dank für Ihre Zeit und Unterstützung. Es war eine Freude, mit Ihnen zusammenzuarbeiten. Ich wünsche Ihnen alles Gute für Ihre zukünftigen Projekte und hoffe, dass sich unsere Wege bald wieder kreuzen.

Herzliche Grüße.

", - "attachments": [] -} -``` \ No newline at end of file diff --git a/prompts/20260322-180311-276-chapter_structure_generation_prompt.txt b/prompts/20260322-180311-276-chapter_structure_generation_prompt.txt deleted file mode 100644 index 49ba0ee5..00000000 --- a/prompts/20260322-180311-276-chapter_structure_generation_prompt.txt +++ /dev/null @@ -1,119 +0,0 @@ -# TASK: Plan Document Structure (Documents + Chapters) - -This is a STRUCTURE PLANNING task. You define which documents to create and which chapters each document will have. -Chapter CONTENT will be generated in a later step - here you only plan the STRUCTURE and assign content references. -Return EXACTLY ONE complete JSON object. Do not generate multiple JSON objects, alternatives, or variations. Do not use separators like "---" between JSON objects. - -## USER REQUEST (for context) -``` -entwirf eine email mit dem inhalt des files davor -``` - -## AVAILABLE CONTENT PARTS - -(No content parts available) - -## CONTENT ASSIGNMENT RULE - -CRITICAL: Every chapter MUST have contentParts assigned if it relates to documents/images/data from the user request. -If the user request mentions documents/images/data, then EVERY chapter that generates content related to those references MUST assign the relevant ContentParts explicitly. - -Assignment logic: -- If chapter DISPLAYS a document/image → assign "object" format ContentPart with "caption" -- If chapter generates text content ABOUT a document/image/data → assign ContentPart with "instruction": - - Prefer "extracted" format if available (contains analyzed/extracted content) - - If only "object" format is available, use "object" format with "instruction" (to write ABOUT the image/document) -- If chapter's generationHint or purpose relates to a document/image/data mentioned in user request → it MUST have ContentParts assigned -- Multiple chapters might assign the same ContentPart (e.g., one chapter displays image, another writes about it) -- Use ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above -- Empty contentParts are only allowed if chapter generates content WITHOUT referencing any documents/images/data from the user request - -CRITICAL RULE: If the user request mentions BOTH: - a) Documents/images/data (listed in AVAILABLE CONTENT PARTS above), AND - b) Generic content types (article text, main content, body text, etc.) -Then chapters that generate those generic content types MUST assign the relevant ContentParts, because the content should relate to or be based on the provided documents/images/data. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential information only -- AVOID verbose, lengthy, or repetitive text - be concise and direct -- Prioritize FACTS over filler text - no introductions like "In this chapter..." -- Minimize system resources: shorter content = faster processing -- Quality over quantity: precise, meaningful content rather than padding - -## CHAPTER STRUCTURE REQUIREMENTS -- Generate chapters based on USER REQUEST - analyze what structure the user wants -- Create ONLY the minimum chapters needed to cover the user's request - avoid over-structuring -- HARD LIMIT: Maximum 7 chapters per document. If the topic can be covered in fewer, prefer fewer. Combine related topics into single chapters rather than creating many small ones. -- IMPORTANT: Each chapter MUST have ALL these fields: - - id: Unique identifier (e.g., "chapter_1") - - level: Heading level (1, 2, 3, etc.) - - title: Chapter title - - contentParts: Object mapping ContentPart IDs to usage instructions (MUST assign if chapter relates to documents/data from user request) - - generationHint: Description of what content to generate (including formatting/styling requirements) - - sections: Empty array [] (REQUIRED - sections are generated in next phase) -- contentParts: {"partId": {"instruction": "..."} or {"caption": "..."} or both} - Assign ContentParts as required by CONTENT ASSIGNMENT RULE above -- The "instruction" field for each ContentPart MUST contain ALL relevant details from the USER REQUEST that apply to content extraction for this specific chapter. Include all formatting rules, data requirements, constraints, and specifications mentioned in the user request that are relevant for processing this ContentPart in this chapter. -- generationHint: Keep CONCISE but include relevant details from the USER REQUEST. Focus on WHAT to generate, not HOW to phrase it verbosely. -- The number of chapters depends on the user request - create only what is requested. Do NOT create chapters for topics without available data. - -CRITICAL: Only create chapters for CONTENT sections, not for formatting/styling requirements. Formatting/styling requirements to be included in each generationHint if needed. - -## DOCUMENT STRUCTURE - -For each document, determine: -- outputFormat: From USER REQUEST (explicit mention or infer from purpose/content type). Default: "txt". Multiple documents can have different formats. -- language: From USER REQUEST (map to ISO 639-1: de, en, fr, it...). Default: "de". Multiple documents can have different languages. -- chapters: Structure appropriately for the format (e.g., pptx=slides, docx=sections, xlsx=worksheets). Match format capabilities and constraints. - -Required JSON fields: -- metadata: {"title": "...", "language": "..."} -- documents: Array with id, title, filename, outputFormat, language, chapters[] -- chapters: Array with id, level, title, contentParts, generationHint, sections[] - -EXAMPLE STRUCTURE (for reference only - adapt to user request): -{ - "metadata": { - "title": "Document Title", - "language": "de" - }, - "documents": [{ - "id": "doc_1", - "title": "Document Title", - "filename": "document.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Chapter Title", - "contentParts": { - "extracted_part_id": { - "instruction": "Use extracted content with ALL relevant details from user request" - } - }, - "generationHint": "Detailed description including ALL relevant details from user request for this chapter", - "sections": [] - } - ] - }] -} - -CRITICAL INSTRUCTIONS: -- Generate chapters based on USER REQUEST, NOT based on the example above -- The example shows the JSON structure format, NOT the required chapters -- Create only the chapters that match the user's request -- Adapt chapter titles and structure to match the user's specific request -- Determine outputFormat and language for each document by analyzing the USER REQUEST above -- The example shows placeholders "txt" and "de" - YOU MUST REPLACE THESE with actual values determined from the USER REQUEST - -MANDATORY CONTENT ASSIGNMENT CHECK: -For each chapter, verify: -1. Does the user request mention documents/images/data? (e.g., "photo", "image", "document", "data", "based on", "about") -2. Does this chapter's generationHint, title, or purpose relate to those documents/images/data mentioned in step 1? - - Examples: "article about the photo", "text describing the image", "analysis of the document", "content based on the data" - - Even if chapter doesn't explicitly say "about the image", if user request mentions both the image AND this chapter's content type → relate them -3. If YES to both → chapter MUST have contentParts assigned (cannot be empty {}) -4. If ContentPart is "object" format and chapter needs to write ABOUT it → assign with "instruction" field, not just "caption" - -OUTPUT FORMAT: Start with { and end with }. Do NOT use markdown code fences (```json). Do NOT add explanatory text before or after the JSON. Return ONLY the JSON object itself. diff --git a/prompts/20260322-180313-277-chapter_structure_generation_response.txt b/prompts/20260322-180313-277-chapter_structure_generation_response.txt deleted file mode 100644 index b1daec4e..00000000 --- a/prompts/20260322-180313-277-chapter_structure_generation_response.txt +++ /dev/null @@ -1,41 +0,0 @@ -{ - "metadata": { - "title": "Email Entwurf", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "Email Entwurf", - "filename": "email_entwurf.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Einleitung", - "contentParts": {}, - "generationHint": "Einleitung der E-Mail, Begrüßung und Vorstellung des Themas", - "sections": [] - }, - { - "id": "chapter_2", - "level": 1, - "title": "Hauptinhalt", - "contentParts": {}, - "generationHint": "Hauptinhalt der E-Mail basierend auf dem vorherigen Dokument", - "sections": [] - }, - { - "id": "chapter_3", - "level": 1, - "title": "Schlussfolgerung", - "contentParts": {}, - "generationHint": "Abschluss der E-Mail mit einer Zusammenfassung und einem Abschiedsgruß", - "sections": [] - } - ] - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180313-278-chapter_structure_generation_final_result.txt b/prompts/20260322-180313-278-chapter_structure_generation_final_result.txt deleted file mode 100644 index b1daec4e..00000000 --- a/prompts/20260322-180313-278-chapter_structure_generation_final_result.txt +++ /dev/null @@ -1,41 +0,0 @@ -{ - "metadata": { - "title": "Email Entwurf", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "Email Entwurf", - "filename": "email_entwurf.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Einleitung", - "contentParts": {}, - "generationHint": "Einleitung der E-Mail, Begrüßung und Vorstellung des Themas", - "sections": [] - }, - { - "id": "chapter_2", - "level": 1, - "title": "Hauptinhalt", - "contentParts": {}, - "generationHint": "Hauptinhalt der E-Mail basierend auf dem vorherigen Dokument", - "sections": [] - }, - { - "id": "chapter_3", - "level": 1, - "title": "Schlussfolgerung", - "contentParts": {}, - "generationHint": "Abschluss der E-Mail mit einer Zusammenfassung und einem Abschiedsgruß", - "sections": [] - } - ] - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180313-279-chapter_structure_chapter_1_prompt.txt b/prompts/20260322-180313-279-chapter_structure_chapter_1_prompt.txt deleted file mode 100644 index 2a21588c..00000000 --- a/prompts/20260322-180313-279-chapter_structure_chapter_1_prompt.txt +++ /dev/null @@ -1,73 +0,0 @@ -TASK: Generate Chapter Sections Structure - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -CHAPTER: Einleitung (Level 1, ID: chapter_1) -GENERATION HINT: Einleitung der E-Mail, Begrüßung und Vorstellung des Themas - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT sections: Focus on essential information only -- AVOID creating too many sections - combine related content where possible -- Each section should serve a clear purpose with meaningful data -- If no relevant data exists for a topic, do NOT create a section for it -- Prefer ONE comprehensive section over multiple sparse sections -- HARD LIMIT: Maximum 5 sections per chapter. Combine related subtopics into single sections to stay within this limit. - -**CRITICAL**: The chapter's generationHint above describes what content this chapter should generate. If the generationHint references documents/images/data, then EACH section that generates content for this chapter MUST assign the relevant ContentParts from AVAILABLE CONTENT PARTS below. - -NOTE: Chapter already has a heading section. Do NOT generate a heading for the chapter title. - -## SECTION INDEPENDENCE -- Each section is independent and self-contained -- One section does NOT have information about another section -- Each section must provide its own context and be understandable alone - -AVAILABLE CONTENT PARTS: - -(No content parts specified for this chapter) - -## CONTENT ASSIGNMENT RULE - CRITICAL -If AVAILABLE CONTENT PARTS are listed above, then EVERY section that generates content related to those ContentParts MUST assign them explicitly. - -**Assignment logic:** -- If section generates text content ABOUT a ContentPart → assign "extracted" format ContentPart with appropriate instruction -- If section DISPLAYS a ContentPart → assign "object" format ContentPart -- If section's generationHint or purpose relates to a ContentPart listed above → it MUST have contentPartIds assigned -- If chapter's generationHint references documents/images/data AND section generates content for that chapter → section MUST assign relevant ContentParts -- Empty contentPartIds [] are only allowed if section generates content WITHOUT referencing any available ContentParts AND WITHOUT relating to chapter's generationHint - -## ACCEPTED CONTENT TYPES FOR THIS FORMAT -The document output format (txt) accepts only the following content types: -table, bullet_list, heading, paragraph, code_block - -**CRITICAL**: Only create sections with content types from this list. Other types will fail. - -useAiCall RULE (simple): -- useAiCall: true → Content needs AI processing (extract, transform, generate, filter, summarize) -- useAiCall: false → Content can be inserted directly without changes (Format is "object" or "reference") - -RETURN JSON: -{ - "sections": [ - { - "id": "section_1", - "content_type": "table", - "contentPartIds": ["extracted_part_id"], - "generationHint": "Description of what to extract or generate", - "useAiCall": true, - "elements": [] - } - ] -} - -**MANDATORY CONTENT ASSIGNMENT CHECK:** -For each section, verify: -1. Are ContentParts listed in AVAILABLE CONTENT PARTS above? -2. Does this section's generationHint or purpose relate to those ContentParts? -3. If YES to both → section MUST have contentPartIds assigned (cannot be empty []) -4. Assign ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above - -IMAGE SECTIONS: -- For image sections, always provide a "caption" field with a descriptive caption for the image. - -Return only valid JSON. Do not include any explanatory text outside the JSON. diff --git a/prompts/20260322-180313-280-chapter_structure_chapter_2_prompt.txt b/prompts/20260322-180313-280-chapter_structure_chapter_2_prompt.txt deleted file mode 100644 index 1e614a94..00000000 --- a/prompts/20260322-180313-280-chapter_structure_chapter_2_prompt.txt +++ /dev/null @@ -1,73 +0,0 @@ -TASK: Generate Chapter Sections Structure - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -CHAPTER: Hauptinhalt (Level 1, ID: chapter_2) -GENERATION HINT: Hauptinhalt der E-Mail basierend auf dem vorherigen Dokument - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT sections: Focus on essential information only -- AVOID creating too many sections - combine related content where possible -- Each section should serve a clear purpose with meaningful data -- If no relevant data exists for a topic, do NOT create a section for it -- Prefer ONE comprehensive section over multiple sparse sections -- HARD LIMIT: Maximum 5 sections per chapter. Combine related subtopics into single sections to stay within this limit. - -**CRITICAL**: The chapter's generationHint above describes what content this chapter should generate. If the generationHint references documents/images/data, then EACH section that generates content for this chapter MUST assign the relevant ContentParts from AVAILABLE CONTENT PARTS below. - -NOTE: Chapter already has a heading section. Do NOT generate a heading for the chapter title. - -## SECTION INDEPENDENCE -- Each section is independent and self-contained -- One section does NOT have information about another section -- Each section must provide its own context and be understandable alone - -AVAILABLE CONTENT PARTS: - -(No content parts specified for this chapter) - -## CONTENT ASSIGNMENT RULE - CRITICAL -If AVAILABLE CONTENT PARTS are listed above, then EVERY section that generates content related to those ContentParts MUST assign them explicitly. - -**Assignment logic:** -- If section generates text content ABOUT a ContentPart → assign "extracted" format ContentPart with appropriate instruction -- If section DISPLAYS a ContentPart → assign "object" format ContentPart -- If section's generationHint or purpose relates to a ContentPart listed above → it MUST have contentPartIds assigned -- If chapter's generationHint references documents/images/data AND section generates content for that chapter → section MUST assign relevant ContentParts -- Empty contentPartIds [] are only allowed if section generates content WITHOUT referencing any available ContentParts AND WITHOUT relating to chapter's generationHint - -## ACCEPTED CONTENT TYPES FOR THIS FORMAT -The document output format (txt) accepts only the following content types: -table, bullet_list, heading, paragraph, code_block - -**CRITICAL**: Only create sections with content types from this list. Other types will fail. - -useAiCall RULE (simple): -- useAiCall: true → Content needs AI processing (extract, transform, generate, filter, summarize) -- useAiCall: false → Content can be inserted directly without changes (Format is "object" or "reference") - -RETURN JSON: -{ - "sections": [ - { - "id": "section_1", - "content_type": "table", - "contentPartIds": ["extracted_part_id"], - "generationHint": "Description of what to extract or generate", - "useAiCall": true, - "elements": [] - } - ] -} - -**MANDATORY CONTENT ASSIGNMENT CHECK:** -For each section, verify: -1. Are ContentParts listed in AVAILABLE CONTENT PARTS above? -2. Does this section's generationHint or purpose relate to those ContentParts? -3. If YES to both → section MUST have contentPartIds assigned (cannot be empty []) -4. Assign ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above - -IMAGE SECTIONS: -- For image sections, always provide a "caption" field with a descriptive caption for the image. - -Return only valid JSON. Do not include any explanatory text outside the JSON. diff --git a/prompts/20260322-180313-281-chapter_structure_chapter_3_prompt.txt b/prompts/20260322-180313-281-chapter_structure_chapter_3_prompt.txt deleted file mode 100644 index 675271f1..00000000 --- a/prompts/20260322-180313-281-chapter_structure_chapter_3_prompt.txt +++ /dev/null @@ -1,73 +0,0 @@ -TASK: Generate Chapter Sections Structure - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -CHAPTER: Schlussfolgerung (Level 1, ID: chapter_3) -GENERATION HINT: Abschluss der E-Mail mit einer Zusammenfassung und einem Abschiedsgruß - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT sections: Focus on essential information only -- AVOID creating too many sections - combine related content where possible -- Each section should serve a clear purpose with meaningful data -- If no relevant data exists for a topic, do NOT create a section for it -- Prefer ONE comprehensive section over multiple sparse sections -- HARD LIMIT: Maximum 5 sections per chapter. Combine related subtopics into single sections to stay within this limit. - -**CRITICAL**: The chapter's generationHint above describes what content this chapter should generate. If the generationHint references documents/images/data, then EACH section that generates content for this chapter MUST assign the relevant ContentParts from AVAILABLE CONTENT PARTS below. - -NOTE: Chapter already has a heading section. Do NOT generate a heading for the chapter title. - -## SECTION INDEPENDENCE -- Each section is independent and self-contained -- One section does NOT have information about another section -- Each section must provide its own context and be understandable alone - -AVAILABLE CONTENT PARTS: - -(No content parts specified for this chapter) - -## CONTENT ASSIGNMENT RULE - CRITICAL -If AVAILABLE CONTENT PARTS are listed above, then EVERY section that generates content related to those ContentParts MUST assign them explicitly. - -**Assignment logic:** -- If section generates text content ABOUT a ContentPart → assign "extracted" format ContentPart with appropriate instruction -- If section DISPLAYS a ContentPart → assign "object" format ContentPart -- If section's generationHint or purpose relates to a ContentPart listed above → it MUST have contentPartIds assigned -- If chapter's generationHint references documents/images/data AND section generates content for that chapter → section MUST assign relevant ContentParts -- Empty contentPartIds [] are only allowed if section generates content WITHOUT referencing any available ContentParts AND WITHOUT relating to chapter's generationHint - -## ACCEPTED CONTENT TYPES FOR THIS FORMAT -The document output format (txt) accepts only the following content types: -table, bullet_list, heading, paragraph, code_block - -**CRITICAL**: Only create sections with content types from this list. Other types will fail. - -useAiCall RULE (simple): -- useAiCall: true → Content needs AI processing (extract, transform, generate, filter, summarize) -- useAiCall: false → Content can be inserted directly without changes (Format is "object" or "reference") - -RETURN JSON: -{ - "sections": [ - { - "id": "section_1", - "content_type": "table", - "contentPartIds": ["extracted_part_id"], - "generationHint": "Description of what to extract or generate", - "useAiCall": true, - "elements": [] - } - ] -} - -**MANDATORY CONTENT ASSIGNMENT CHECK:** -For each section, verify: -1. Are ContentParts listed in AVAILABLE CONTENT PARTS above? -2. Does this section's generationHint or purpose relate to those ContentParts? -3. If YES to both → section MUST have contentPartIds assigned (cannot be empty []) -4. Assign ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above - -IMAGE SECTIONS: -- For image sections, always provide a "caption" field with a descriptive caption for the image. - -Return only valid JSON. Do not include any explanatory text outside the JSON. diff --git a/prompts/20260322-180316-282-chapter_structure_chapter_3_response.txt b/prompts/20260322-180316-282-chapter_structure_chapter_3_response.txt deleted file mode 100644 index c65fe0a0..00000000 --- a/prompts/20260322-180316-282-chapter_structure_chapter_3_response.txt +++ /dev/null @@ -1,26 +0,0 @@ -```json -{ - "sections": [ - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Zusammenfassung der Hauptpunkte der E-Mail", - "useAiCall": true, - "elements": [ - "In dieser E-Mail haben wir die wichtigsten Themen und Ergebnisse unserer Diskussion zusammengefasst. Wir haben die nächsten Schritte festgelegt und die Verantwortlichkeiten verteilt, um sicherzustellen, dass alle Beteiligten auf dem gleichen Stand sind." - ] - }, - { - "id": "section_2", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Abschiedsgruß und Dank für die Zusammenarbeit", - "useAiCall": true, - "elements": [ - "Vielen Dank für Ihre Aufmerksamkeit und die konstruktive Zusammenarbeit. Wir freuen uns auf die weitere erfolgreiche Zusammenarbeit und stehen für Rückfragen jederzeit zur Verfügung." - ] - } - ] -} -``` \ No newline at end of file diff --git a/prompts/20260322-180319-283-chapter_structure_chapter_2_response.txt b/prompts/20260322-180319-283-chapter_structure_chapter_2_response.txt deleted file mode 100644 index 2eded4f9..00000000 --- a/prompts/20260322-180319-283-chapter_structure_chapter_2_response.txt +++ /dev/null @@ -1,58 +0,0 @@ -```json -{ - "sections": [ - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Einleitung in den Hauptinhalt der E-Mail, basierend auf dem vorherigen Dokument", - "useAiCall": true, - "elements": [ - "Der Hauptinhalt einer E-Mail ist entscheidend für die effektive Kommunikation. Er sollte klar, prägnant und auf den Punkt gebracht sein, um die Aufmerksamkeit des Lesers zu halten und die beabsichtigte Botschaft zu vermitteln." - ] - }, - { - "id": "section_2", - "content_type": "bullet_list", - "contentPartIds": [], - "generationHint": "Wichtige Punkte, die im Hauptinhalt einer E-Mail enthalten sein sollten", - "useAiCall": true, - "elements": [ - "Klare Betreffzeile, die den Inhalt zusammenfasst", - "Einleitung, die den Zweck der E-Mail erklärt", - "Hauptteil mit detaillierten Informationen oder Anfragen", - "Abschluss mit einer klaren Handlungsaufforderung oder Zusammenfassung", - "Höfliche Verabschiedung und Kontaktinformationen" - ] - }, - { - "id": "section_3", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Tipps zur Verbesserung der Lesbarkeit und Wirkung des Hauptinhalts", - "useAiCall": true, - "elements": [ - "Um die Lesbarkeit und Wirkung des Hauptinhalts zu verbessern, sollten Sie kurze Absätze verwenden, klare und einfache Sprache wählen und wichtige Informationen hervorheben. Vermeiden Sie Fachjargon, es sei denn, der Empfänger ist damit vertraut." - ] - }, - { - "id": "section_4", - "content_type": "table", - "contentPartIds": [], - "generationHint": "Vergleich von effektiven und ineffektiven E-Mail-Inhalten", - "useAiCall": true, - "elements": [ - { - "headers": ["Effektive Inhalte", "Ineffektive Inhalte"], - "rows": [ - ["Klare Struktur", "Unklare Struktur"], - ["Prägnante Sprache", "Langatmige Erklärungen"], - ["Relevante Informationen", "Irrelevante Details"], - ["Klare Handlungsaufforderung", "Unklare oder fehlende Handlungsaufforderung"] - ] - } - ] - } - ] -} -``` \ No newline at end of file diff --git a/prompts/20260322-180321-284-chapter_structure_chapter_1_response.txt b/prompts/20260322-180321-284-chapter_structure_chapter_1_response.txt deleted file mode 100644 index 3d4fe325..00000000 --- a/prompts/20260322-180321-284-chapter_structure_chapter_1_response.txt +++ /dev/null @@ -1,49 +0,0 @@ -```json -{ - "sections": [ - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Einleitung der E-Mail, Begrüßung und Vorstellung des Themas", - "useAiCall": true, - "elements": [ - "Willkommen zu unserer Einführung in das Thema der E-Mail-Kommunikation. In diesem Kapitel werden wir die Grundlagen der E-Mail-Kommunikation besprechen, einschließlich der Begrüßung und der Vorstellung des Themas. Ziel ist es, Ihnen ein klares Verständnis für die Bedeutung und den Aufbau effektiver E-Mails zu vermitteln." - ] - }, - { - "id": "section_2", - "content_type": "bullet_list", - "contentPartIds": [], - "generationHint": "Wichtige Aspekte der E-Mail-Einleitung", - "useAiCall": true, - "elements": [ - "Klarheit und Prägnanz in der Begrüßung", - "Relevanz des Themas für den Empfänger", - "Angemessener Ton und Stil", - "Ziel der E-Mail klar definieren" - ] - }, - { - "id": "section_3", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Bedeutung der Begrüßung in E-Mails", - "useAiCall": true, - "elements": [ - "Die Begrüßung in einer E-Mail ist entscheidend, um einen positiven ersten Eindruck zu hinterlassen. Sie sollte den Empfänger direkt ansprechen und den Ton für den weiteren Verlauf der Kommunikation setzen. Eine gut formulierte Begrüßung kann das Interesse des Lesers wecken und die Bereitschaft erhöhen, die gesamte Nachricht zu lesen." - ] - }, - { - "id": "section_4", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Vorstellung des Themas in der E-Mail", - "useAiCall": true, - "elements": [ - "Die Vorstellung des Themas in einer E-Mail sollte klar und prägnant sein. Es ist wichtig, dem Empfänger sofort zu vermitteln, worum es in der Nachricht geht, um Missverständnisse zu vermeiden und die Aufmerksamkeit aufrechtzuerhalten. Eine klare Themenvorstellung hilft auch dabei, die Relevanz der E-Mail für den Empfänger zu verdeutlichen." - ] - } - ] -} -``` \ No newline at end of file diff --git a/prompts/20260322-180321-285-chapter_1_section_section_1_prompt.txt b/prompts/20260322-180321-285-chapter_1_section_section_1_prompt.txt deleted file mode 100644 index 7b72d7a1..00000000 --- a/prompts/20260322-180321-285-chapter_1_section_section_1_prompt.txt +++ /dev/null @@ -1,56 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_1 -- Content Type: paragraph -- Generation Hint: Einleitung der E-Mail, Begrüßung und Vorstellung des Themas -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Following sections: -- section_2 (bullet_list): -- section_3 (paragraph): - diff --git a/prompts/20260322-180321-286-chapter_1_section_section_2_prompt.txt b/prompts/20260322-180321-286-chapter_1_section_section_2_prompt.txt deleted file mode 100644 index 65ff47ca..00000000 --- a/prompts/20260322-180321-286-chapter_1_section_section_2_prompt.txt +++ /dev/null @@ -1,59 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_2 -- Content Type: bullet_list -- Generation Hint: Wichtige Aspekte der E-Mail-Einleitung -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (bullet_list). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "bullet_list", - "content": {{"items": ["Item 1", "Item 2", "Item 3"]}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): - -Following sections: -- section_3 (paragraph): -- section_4 (paragraph): - diff --git a/prompts/20260322-180321-287-chapter_1_section_section_3_prompt.txt b/prompts/20260322-180321-287-chapter_1_section_section_3_prompt.txt deleted file mode 100644 index 3d588c06..00000000 --- a/prompts/20260322-180321-287-chapter_1_section_section_3_prompt.txt +++ /dev/null @@ -1,60 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_3 -- Content Type: paragraph -- Generation Hint: Bedeutung der Begrüßung in E-Mails -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): -- section_2 (bullet_list): - -Following sections: -- section_4 (paragraph): -- section_1 (paragraph): - diff --git a/prompts/20260322-180321-288-chapter_1_section_section_4_prompt.txt b/prompts/20260322-180321-288-chapter_1_section_section_4_prompt.txt deleted file mode 100644 index 40366425..00000000 --- a/prompts/20260322-180321-288-chapter_1_section_section_4_prompt.txt +++ /dev/null @@ -1,60 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_4 -- Content Type: paragraph -- Generation Hint: Vorstellung des Themas in der E-Mail -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_2 (bullet_list): -- section_3 (paragraph): - -Following sections: -- section_1 (paragraph): -- section_2 (bullet_list): - diff --git a/prompts/20260322-180321-289-chapter_2_section_section_1_prompt.txt b/prompts/20260322-180321-289-chapter_2_section_section_1_prompt.txt deleted file mode 100644 index d5e567c4..00000000 --- a/prompts/20260322-180321-289-chapter_2_section_section_1_prompt.txt +++ /dev/null @@ -1,56 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_1 -- Content Type: paragraph -- Generation Hint: Einleitung in den Hauptinhalt der E-Mail, basierend auf dem vorherigen Dokument -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Following sections: -- section_2 (bullet_list): -- section_3 (paragraph): - diff --git a/prompts/20260322-180322-290-chapter_1_section_section_1_response.txt b/prompts/20260322-180322-290-chapter_1_section_section_1_response.txt deleted file mode 100644 index 6f53e048..00000000 --- a/prompts/20260322-180322-290-chapter_1_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Sehr geehrte Damen und Herren, ich hoffe, diese Nachricht trifft Sie wohl. Ich möchte Ihnen heute ein wichtiges Thema vorstellen, das für unsere zukünftige Zusammenarbeit von großer Bedeutung ist." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180322-291-chapter_1_section_section_1_response.txt b/prompts/20260322-180322-291-chapter_1_section_section_1_response.txt deleted file mode 100644 index 6f53e048..00000000 --- a/prompts/20260322-180322-291-chapter_1_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Sehr geehrte Damen und Herren, ich hoffe, diese Nachricht trifft Sie wohl. Ich möchte Ihnen heute ein wichtiges Thema vorstellen, das für unsere zukünftige Zusammenarbeit von großer Bedeutung ist." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180322-292-chapter_2_section_section_2_prompt.txt b/prompts/20260322-180322-292-chapter_2_section_section_2_prompt.txt deleted file mode 100644 index 403d6801..00000000 --- a/prompts/20260322-180322-292-chapter_2_section_section_2_prompt.txt +++ /dev/null @@ -1,59 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_2 -- Content Type: bullet_list -- Generation Hint: Wichtige Punkte, die im Hauptinhalt einer E-Mail enthalten sein sollten -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (bullet_list). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "bullet_list", - "content": {{"items": ["Item 1", "Item 2", "Item 3"]}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): - -Following sections: -- section_3 (paragraph): -- section_4 (paragraph): - diff --git a/prompts/20260322-180323-293-chapter_1_section_section_4_response.txt b/prompts/20260322-180323-293-chapter_1_section_section_4_response.txt deleted file mode 100644 index ef029907..00000000 --- a/prompts/20260322-180323-293-chapter_1_section_section_4_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "In dieser E-Mail möchten wir Ihnen das Thema näherbringen, das in den vorherigen Abschnitten behandelt wurde. Wir haben die wichtigsten Punkte zusammengefasst, um Ihnen einen klaren Überblick zu geben. Bitte beachten Sie die Details, die in den folgenden Abschnitten weiter erläutert werden." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180323-294-chapter_1_section_section_4_response.txt b/prompts/20260322-180323-294-chapter_1_section_section_4_response.txt deleted file mode 100644 index ef029907..00000000 --- a/prompts/20260322-180323-294-chapter_1_section_section_4_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "In dieser E-Mail möchten wir Ihnen das Thema näherbringen, das in den vorherigen Abschnitten behandelt wurde. Wir haben die wichtigsten Punkte zusammengefasst, um Ihnen einen klaren Überblick zu geben. Bitte beachten Sie die Details, die in den folgenden Abschnitten weiter erläutert werden." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180323-295-chapter_2_section_section_3_prompt.txt b/prompts/20260322-180323-295-chapter_2_section_section_3_prompt.txt deleted file mode 100644 index 467efc05..00000000 --- a/prompts/20260322-180323-295-chapter_2_section_section_3_prompt.txt +++ /dev/null @@ -1,60 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_3 -- Content Type: paragraph -- Generation Hint: Tipps zur Verbesserung der Lesbarkeit und Wirkung des Hauptinhalts -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): -- section_2 (bullet_list): - -Following sections: -- section_4 (paragraph): -- section_1 (paragraph): - diff --git a/prompts/20260322-180323-296-chapter_2_section_section_1_response.txt b/prompts/20260322-180323-296-chapter_2_section_section_1_response.txt deleted file mode 100644 index ddb1a4bb..00000000 --- a/prompts/20260322-180323-296-chapter_2_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Vielen Dank für Ihre Nachricht und Ihr Interesse an unseren Dienstleistungen. Wir schätzen Ihre Anfrage sehr und möchten Ihnen die bestmögliche Unterstützung bieten. Im Folgenden finden Sie eine Übersicht über die wichtigsten Informationen und nächsten Schritte, die wir gemeinsam unternehmen können, um Ihre Anforderungen zu erfüllen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180323-297-chapter_2_section_section_1_response.txt b/prompts/20260322-180323-297-chapter_2_section_section_1_response.txt deleted file mode 100644 index ddb1a4bb..00000000 --- a/prompts/20260322-180323-297-chapter_2_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Vielen Dank für Ihre Nachricht und Ihr Interesse an unseren Dienstleistungen. Wir schätzen Ihre Anfrage sehr und möchten Ihnen die bestmögliche Unterstützung bieten. Im Folgenden finden Sie eine Übersicht über die wichtigsten Informationen und nächsten Schritte, die wir gemeinsam unternehmen können, um Ihre Anforderungen zu erfüllen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180323-298-chapter_2_section_section_4_prompt.txt b/prompts/20260322-180323-298-chapter_2_section_section_4_prompt.txt deleted file mode 100644 index 39bcf4da..00000000 --- a/prompts/20260322-180323-298-chapter_2_section_section_4_prompt.txt +++ /dev/null @@ -1,60 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_4 -- Content Type: table -- Generation Hint: Vergleich von effektiven und ineffektiven E-Mail-Inhalten -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (table). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "table", - "content": {{"headers": ["Column1", "Column2"], "rows": [["Value1", "Value2"], ["Value3", "Value4"]]}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_2 (bullet_list): -- section_3 (paragraph): - -Following sections: -- section_1 (paragraph): -- section_2 (bullet_list): - diff --git a/prompts/20260322-180323-299-chapter_1_section_section_3_response.txt b/prompts/20260322-180323-299-chapter_1_section_section_3_response.txt deleted file mode 100644 index 6aa04e33..00000000 --- a/prompts/20260322-180323-299-chapter_1_section_section_3_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Die Begrüßung in E-Mails ist entscheidend, um den Ton der Kommunikation festzulegen. Eine formelle Anrede zeigt Respekt und Professionalität, während eine informelle Begrüßung Nähe und Vertrautheit signalisiert. Die Wahl der Begrüßung sollte sich nach dem Empfänger und dem Kontext richten. Eine unpassende Anrede kann Missverständnisse hervorrufen oder den Empfänger verärgern. Daher ist es wichtig, die richtige Balance zwischen Höflichkeit und Angemessenheit zu finden, um eine positive Kommunikation zu gewährleisten." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180323-300-chapter_1_section_section_3_response.txt b/prompts/20260322-180323-300-chapter_1_section_section_3_response.txt deleted file mode 100644 index 6aa04e33..00000000 --- a/prompts/20260322-180323-300-chapter_1_section_section_3_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Die Begrüßung in E-Mails ist entscheidend, um den Ton der Kommunikation festzulegen. Eine formelle Anrede zeigt Respekt und Professionalität, während eine informelle Begrüßung Nähe und Vertrautheit signalisiert. Die Wahl der Begrüßung sollte sich nach dem Empfänger und dem Kontext richten. Eine unpassende Anrede kann Missverständnisse hervorrufen oder den Empfänger verärgern. Daher ist es wichtig, die richtige Balance zwischen Höflichkeit und Angemessenheit zu finden, um eine positive Kommunikation zu gewährleisten." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180323-301-chapter_3_section_section_1_prompt.txt b/prompts/20260322-180323-301-chapter_3_section_section_1_prompt.txt deleted file mode 100644 index 93309ff4..00000000 --- a/prompts/20260322-180323-301-chapter_3_section_section_1_prompt.txt +++ /dev/null @@ -1,56 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_1 -- Content Type: paragraph -- Generation Hint: Zusammenfassung der Hauptpunkte der E-Mail -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Following sections: -- section_2 (bullet_list): -- section_3 (paragraph): - diff --git a/prompts/20260322-180324-302-chapter_1_section_section_2_response.txt b/prompts/20260322-180324-302-chapter_1_section_section_2_response.txt deleted file mode 100644 index 0cfc323d..00000000 --- a/prompts/20260322-180324-302-chapter_1_section_section_2_response.txt +++ /dev/null @@ -1,18 +0,0 @@ -{ - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Klarer Betreff: Prägnant und relevant für den Empfänger.", - "Persönliche Anrede: Verwenden Sie den Namen des Empfängers.", - "Zweck der E-Mail: Kurz und direkt den Grund der Nachricht nennen.", - "Relevanz: Warum ist die Nachricht für den Empfänger wichtig?", - "Höflicher Ton: Freundlich und respektvoll formulieren.", - "Call-to-Action: Was soll der Empfänger als nächstes tun?", - "Kontaktinformationen: Für Rückfragen erreichbar sein." - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180324-303-chapter_1_section_section_2_response.txt b/prompts/20260322-180324-303-chapter_1_section_section_2_response.txt deleted file mode 100644 index 0cfc323d..00000000 --- a/prompts/20260322-180324-303-chapter_1_section_section_2_response.txt +++ /dev/null @@ -1,18 +0,0 @@ -{ - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Klarer Betreff: Prägnant und relevant für den Empfänger.", - "Persönliche Anrede: Verwenden Sie den Namen des Empfängers.", - "Zweck der E-Mail: Kurz und direkt den Grund der Nachricht nennen.", - "Relevanz: Warum ist die Nachricht für den Empfänger wichtig?", - "Höflicher Ton: Freundlich und respektvoll formulieren.", - "Call-to-Action: Was soll der Empfänger als nächstes tun?", - "Kontaktinformationen: Für Rückfragen erreichbar sein." - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180324-304-chapter_3_section_section_2_prompt.txt b/prompts/20260322-180324-304-chapter_3_section_section_2_prompt.txt deleted file mode 100644 index 35a78ec8..00000000 --- a/prompts/20260322-180324-304-chapter_3_section_section_2_prompt.txt +++ /dev/null @@ -1,59 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_2 -- Content Type: paragraph -- Generation Hint: Abschiedsgruß und Dank für die Zusammenarbeit -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): - -Following sections: -- section_3 (paragraph): -- section_4 (paragraph): - diff --git a/prompts/20260322-180324-305-chapter_2_section_section_2_response.txt b/prompts/20260322-180324-305-chapter_2_section_section_2_response.txt deleted file mode 100644 index a5e76651..00000000 --- a/prompts/20260322-180324-305-chapter_2_section_section_2_response.txt +++ /dev/null @@ -1,18 +0,0 @@ -{ - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Betreff der E-Mail klar und prägnant formulieren", - "Höfliche Anrede und Begrüßung verwenden", - "Zweck der E-Mail direkt ansprechen", - "Wichtige Informationen und Details strukturiert darstellen", - "Klare Handlungsaufforderung oder nächste Schritte angeben", - "Freundlicher Abschluss und Grußformel", - "Kontaktdaten für Rückfragen bereitstellen" - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180324-306-chapter_2_section_section_2_response.txt b/prompts/20260322-180324-306-chapter_2_section_section_2_response.txt deleted file mode 100644 index a5e76651..00000000 --- a/prompts/20260322-180324-306-chapter_2_section_section_2_response.txt +++ /dev/null @@ -1,18 +0,0 @@ -{ - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Betreff der E-Mail klar und prägnant formulieren", - "Höfliche Anrede und Begrüßung verwenden", - "Zweck der E-Mail direkt ansprechen", - "Wichtige Informationen und Details strukturiert darstellen", - "Klare Handlungsaufforderung oder nächste Schritte angeben", - "Freundlicher Abschluss und Grußformel", - "Kontaktdaten für Rückfragen bereitstellen" - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180324-307-chapter_3_section_section_1_response.txt b/prompts/20260322-180324-307-chapter_3_section_section_1_response.txt deleted file mode 100644 index 7dab148a..00000000 --- a/prompts/20260322-180324-307-chapter_3_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Die E-Mail fasst die wichtigsten Punkte zusammen, darunter die Notwendigkeit einer schnellen Antwort auf die Anfrage, die Klärung offener Fragen und die Bereitstellung zusätzlicher Informationen. Es wird auch auf die Bedeutung der Einhaltung von Fristen hingewiesen und die Bereitschaft zur weiteren Zusammenarbeit betont." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180324-308-chapter_3_section_section_1_response.txt b/prompts/20260322-180324-308-chapter_3_section_section_1_response.txt deleted file mode 100644 index 7dab148a..00000000 --- a/prompts/20260322-180324-308-chapter_3_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Die E-Mail fasst die wichtigsten Punkte zusammen, darunter die Notwendigkeit einer schnellen Antwort auf die Anfrage, die Klärung offener Fragen und die Bereitstellung zusätzlicher Informationen. Es wird auch auf die Bedeutung der Einhaltung von Fristen hingewiesen und die Bereitschaft zur weiteren Zusammenarbeit betont." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180325-309-chapter_2_section_section_3_response.txt b/prompts/20260322-180325-309-chapter_2_section_section_3_response.txt deleted file mode 100644 index 1eabf29b..00000000 --- a/prompts/20260322-180325-309-chapter_2_section_section_3_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Um die Lesbarkeit und Wirkung des Hauptinhalts zu verbessern, sollten Sie klare und prägnante Sätze verwenden. Vermeiden Sie Fachjargon, der das Verständnis erschweren könnte, und strukturieren Sie den Text logisch mit Absätzen und Überschriften. Nutzen Sie aktive Sprache, um den Leser direkt anzusprechen, und variieren Sie Satzlängen, um den Textfluss dynamisch zu gestalten. Visuelle Elemente wie Aufzählungen oder Tabellen können komplexe Informationen vereinfachen und die Aufmerksamkeit des Lesers lenken. Achten Sie darauf, dass der Text frei von Rechtschreib- und Grammatikfehlern ist, um die Professionalität zu wahren." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180325-310-chapter_2_section_section_3_response.txt b/prompts/20260322-180325-310-chapter_2_section_section_3_response.txt deleted file mode 100644 index 1eabf29b..00000000 --- a/prompts/20260322-180325-310-chapter_2_section_section_3_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Um die Lesbarkeit und Wirkung des Hauptinhalts zu verbessern, sollten Sie klare und prägnante Sätze verwenden. Vermeiden Sie Fachjargon, der das Verständnis erschweren könnte, und strukturieren Sie den Text logisch mit Absätzen und Überschriften. Nutzen Sie aktive Sprache, um den Leser direkt anzusprechen, und variieren Sie Satzlängen, um den Textfluss dynamisch zu gestalten. Visuelle Elemente wie Aufzählungen oder Tabellen können komplexe Informationen vereinfachen und die Aufmerksamkeit des Lesers lenken. Achten Sie darauf, dass der Text frei von Rechtschreib- und Grammatikfehlern ist, um die Professionalität zu wahren." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180325-311-chapter_2_section_section_4_response.txt b/prompts/20260322-180325-311-chapter_2_section_section_4_response.txt deleted file mode 100644 index a75aa209..00000000 --- a/prompts/20260322-180325-311-chapter_2_section_section_4_response.txt +++ /dev/null @@ -1,19 +0,0 @@ -{ - "elements": [ - { - "type": "table", - "content": { - "headers": ["Effektive E-Mail-Inhalte", "Ineffektive E-Mail-Inhalte"], - "rows": [ - ["Klarer Betreff", "Unklarer oder fehlender Betreff"], - ["Personalisierte Ansprache", "Allgemeine Ansprache"], - ["Klare Handlungsaufforderung", "Vage oder keine Handlungsaufforderung"], - ["Relevante Informationen", "Irrelevante oder überflüssige Informationen"], - ["Kurze und prägnante Sätze", "Lange und komplizierte Sätze"], - ["Visuell ansprechendes Layout", "Unübersichtliches Layout"], - ["Fehlerfreie Grammatik und Rechtschreibung", "Grammatik- und Rechtschreibfehler"] - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180325-312-chapter_2_section_section_4_response.txt b/prompts/20260322-180325-312-chapter_2_section_section_4_response.txt deleted file mode 100644 index b774ba29..00000000 --- a/prompts/20260322-180325-312-chapter_2_section_section_4_response.txt +++ /dev/null @@ -1,43 +0,0 @@ -{ - "elements": [ - { - "type": "table", - "content": { - "headers": [ - "Effektive E-Mail-Inhalte", - "Ineffektive E-Mail-Inhalte" - ], - "rows": [ - [ - "Klarer Betreff", - "Unklarer oder fehlender Betreff" - ], - [ - "Personalisierte Ansprache", - "Allgemeine Ansprache" - ], - [ - "Klare Handlungsaufforderung", - "Vage oder keine Handlungsaufforderung" - ], - [ - "Relevante Informationen", - "Irrelevante oder überflüssige Informationen" - ], - [ - "Kurze und prägnante Sätze", - "Lange und komplizierte Sätze" - ], - [ - "Visuell ansprechendes Layout", - "Unübersichtliches Layout" - ], - [ - "Fehlerfreie Grammatik und Rechtschreibung", - "Grammatik- und Rechtschreibfehler" - ] - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180325-313-chapter_3_section_section_2_response.txt b/prompts/20260322-180325-313-chapter_3_section_section_2_response.txt deleted file mode 100644 index f6ccd3d2..00000000 --- a/prompts/20260322-180325-313-chapter_3_section_section_2_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Vielen Dank für die hervorragende Zusammenarbeit und das Vertrauen, das Sie uns entgegengebracht haben. Es war eine Freude, mit Ihnen zusammenzuarbeiten und gemeinsam Erfolge zu erzielen. Wir wünschen Ihnen alles Gute für die Zukunft und hoffen, dass sich unsere Wege bald wieder kreuzen. Bleiben Sie gesund und erfolgreich!" - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180325-314-chapter_3_section_section_2_response.txt b/prompts/20260322-180325-314-chapter_3_section_section_2_response.txt deleted file mode 100644 index f6ccd3d2..00000000 --- a/prompts/20260322-180325-314-chapter_3_section_section_2_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Vielen Dank für die hervorragende Zusammenarbeit und das Vertrauen, das Sie uns entgegengebracht haben. Es war eine Freude, mit Ihnen zusammenzuarbeiten und gemeinsam Erfolge zu erzielen. Wir wünschen Ihnen alles Gute für die Zukunft und hoffen, dass sich unsere Wege bald wieder kreuzen. Bleiben Sie gesund und erfolgreich!" - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180325-315-document_generation_response.txt b/prompts/20260322-180325-315-document_generation_response.txt deleted file mode 100644 index eb9c0a2b..00000000 --- a/prompts/20260322-180325-315-document_generation_response.txt +++ /dev/null @@ -1,258 +0,0 @@ -{ - "metadata": { - "title": "Email Entwurf", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "Email Entwurf", - "filename": "email_entwurf.txt", - "outputFormat": "txt", - "language": "de", - "sections": [ - { - "id": "chapter_1_heading", - "content_type": "heading", - "elements": [ - { - "type": "heading", - "content": { - "text": "Einleitung", - "level": 1 - } - } - ] - }, - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Einleitung der E-Mail, Begrüßung und Vorstellung des Themas", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Sehr geehrte Damen und Herren, ich hoffe, diese Nachricht trifft Sie wohl. Ich möchte Ihnen heute ein wichtiges Thema vorstellen, das für unsere zukünftige Zusammenarbeit von großer Bedeutung ist." - } - } - ] - }, - { - "id": "section_2", - "content_type": "bullet_list", - "contentPartIds": [], - "generationHint": "Wichtige Aspekte der E-Mail-Einleitung", - "useAiCall": true, - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Klarer Betreff: Prägnant und relevant für den Empfänger.", - "Persönliche Anrede: Verwenden Sie den Namen des Empfängers.", - "Zweck der E-Mail: Kurz und direkt den Grund der Nachricht nennen.", - "Relevanz: Warum ist die Nachricht für den Empfänger wichtig?", - "Höflicher Ton: Freundlich und respektvoll formulieren.", - "Call-to-Action: Was soll der Empfänger als nächstes tun?", - "Kontaktinformationen: Für Rückfragen erreichbar sein." - ] - } - } - ] - }, - { - "id": "section_3", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Bedeutung der Begrüßung in E-Mails", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Die Begrüßung in E-Mails ist entscheidend, um den Ton der Kommunikation festzulegen. Eine formelle Anrede zeigt Respekt und Professionalität, während eine informelle Begrüßung Nähe und Vertrautheit signalisiert. Die Wahl der Begrüßung sollte sich nach dem Empfänger und dem Kontext richten. Eine unpassende Anrede kann Missverständnisse hervorrufen oder den Empfänger verärgern. Daher ist es wichtig, die richtige Balance zwischen Höflichkeit und Angemessenheit zu finden, um eine positive Kommunikation zu gewährleisten." - } - } - ] - }, - { - "id": "section_4", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Vorstellung des Themas in der E-Mail", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "In dieser E-Mail möchten wir Ihnen das Thema näherbringen, das in den vorherigen Abschnitten behandelt wurde. Wir haben die wichtigsten Punkte zusammengefasst, um Ihnen einen klaren Überblick zu geben. Bitte beachten Sie die Details, die in den folgenden Abschnitten weiter erläutert werden." - } - } - ] - }, - { - "id": "chapter_2_heading", - "content_type": "heading", - "elements": [ - { - "type": "heading", - "content": { - "text": "Hauptinhalt", - "level": 1 - } - } - ] - }, - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Einleitung in den Hauptinhalt der E-Mail, basierend auf dem vorherigen Dokument", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Vielen Dank für Ihre Nachricht und Ihr Interesse an unseren Dienstleistungen. Wir schätzen Ihre Anfrage sehr und möchten Ihnen die bestmögliche Unterstützung bieten. Im Folgenden finden Sie eine Übersicht über die wichtigsten Informationen und nächsten Schritte, die wir gemeinsam unternehmen können, um Ihre Anforderungen zu erfüllen." - } - } - ] - }, - { - "id": "section_2", - "content_type": "bullet_list", - "contentPartIds": [], - "generationHint": "Wichtige Punkte, die im Hauptinhalt einer E-Mail enthalten sein sollten", - "useAiCall": true, - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Betreff der E-Mail klar und prägnant formulieren", - "Höfliche Anrede und Begrüßung verwenden", - "Zweck der E-Mail direkt ansprechen", - "Wichtige Informationen und Details strukturiert darstellen", - "Klare Handlungsaufforderung oder nächste Schritte angeben", - "Freundlicher Abschluss und Grußformel", - "Kontaktdaten für Rückfragen bereitstellen" - ] - } - } - ] - }, - { - "id": "section_3", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Tipps zur Verbesserung der Lesbarkeit und Wirkung des Hauptinhalts", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Um die Lesbarkeit und Wirkung des Hauptinhalts zu verbessern, sollten Sie klare und prägnante Sätze verwenden. Vermeiden Sie Fachjargon, der das Verständnis erschweren könnte, und strukturieren Sie den Text logisch mit Absätzen und Überschriften. Nutzen Sie aktive Sprache, um den Leser direkt anzusprechen, und variieren Sie Satzlängen, um den Textfluss dynamisch zu gestalten. Visuelle Elemente wie Aufzählungen oder Tabellen können komplexe Informationen vereinfachen und die Aufmerksamkeit des Lesers lenken. Achten Sie darauf, dass der Text frei von Rechtschreib- und Grammatikfehlern ist, um die Professionalität zu wahren." - } - } - ] - }, - { - "id": "section_4", - "content_type": "table", - "contentPartIds": [], - "generationHint": "Vergleich von effektiven und ineffektiven E-Mail-Inhalten", - "useAiCall": true, - "elements": [ - { - "type": "table", - "content": { - "headers": [ - "Effektive E-Mail-Inhalte", - "Ineffektive E-Mail-Inhalte" - ], - "rows": [ - [ - "Klarer Betreff", - "Unklarer oder fehlender Betreff" - ], - [ - "Personalisierte Ansprache", - "Allgemeine Ansprache" - ], - [ - "Klare Handlungsaufforderung", - "Vage oder keine Handlungsaufforderung" - ], - [ - "Relevante Informationen", - "Irrelevante oder überflüssige Informationen" - ], - [ - "Kurze und prägnante Sätze", - "Lange und komplizierte Sätze" - ], - [ - "Visuell ansprechendes Layout", - "Unübersichtliches Layout" - ], - [ - "Fehlerfreie Grammatik und Rechtschreibung", - "Grammatik- und Rechtschreibfehler" - ] - ] - } - } - ] - }, - { - "id": "chapter_3_heading", - "content_type": "heading", - "elements": [ - { - "type": "heading", - "content": { - "text": "Schlussfolgerung", - "level": 1 - } - } - ] - }, - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Zusammenfassung der Hauptpunkte der E-Mail", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Die E-Mail fasst die wichtigsten Punkte zusammen, darunter die Notwendigkeit einer schnellen Antwort auf die Anfrage, die Klärung offener Fragen und die Bereitstellung zusätzlicher Informationen. Es wird auch auf die Bedeutung der Einhaltung von Fristen hingewiesen und die Bereitschaft zur weiteren Zusammenarbeit betont." - } - } - ] - }, - { - "id": "section_2", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Abschiedsgruß und Dank für die Zusammenarbeit", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Vielen Dank für die hervorragende Zusammenarbeit und das Vertrauen, das Sie uns entgegengebracht haben. Es war eine Freude, mit Ihnen zusammenzuarbeiten und gemeinsam Erfolge zu erzielen. Wir wünschen Ihnen alles Gute für die Zukunft und hoffen, dass sich unsere Wege bald wieder kreuzen. Bleiben Sie gesund und erfolgreich!" - } - } - ] - } - ], - "metadata": { - "outputStyle": "document" - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180325-316-email_composition_prompt.txt b/prompts/20260322-180325-316-email_composition_prompt.txt deleted file mode 100644 index 464fda3d..00000000 --- a/prompts/20260322-180325-316-email_composition_prompt.txt +++ /dev/null @@ -1,22 +0,0 @@ -Compose an email based on this context: -------- -Email Entwurf\n=============\n\nEinleitung\n==========\n\nSehr geehrte Damen und Herren, ich hoffe, diese Nachricht trifft Sie wohl. Ich möchte Ihnen heute ein wichtiges Thema vorstellen, das für unsere zukünftige Zusammenarbeit von großer Bedeutung ist.\n\n- Klarer Betreff: Prägnant und relevant für den Empfänger.\n- Persönliche Anrede: Verwenden Sie den Namen des Empfängers.\n- Zweck der E-Mail: Kurz und direkt den Grund der Nachricht nennen.\n- Relevanz: Warum ist die Nachricht für den Empfänger wichtig?\n- Höflicher Ton: Freundlich und respektvoll formulieren.\n- Call-to-Action: Was soll der Empfänger als nächstes tun?\n- Kontaktinformationen: Für Rückfragen erreichbar sein.\n\nDie Begrüßung in E-Mails ist entscheidend, um den Ton der Kommunikation festzulegen. Eine formelle Anrede zeigt Respekt und Professionalität, während eine informelle Begrüßung Nähe und Vertrautheit signalisiert. Die Wahl der Begrüßung sollte sich nach dem Empfänger und dem Kontext richten. Eine unpassende Anrede kann Missverständnisse hervorrufen oder den Empfänger verärgern. Daher ist es wichtig, die richtige Balance zwischen Höflichkeit und Angemessenheit zu finden, um eine positive Kommunikation zu gewährleisten.\n\nIn dieser E-Mail möchten wir Ihnen das Thema näherbringen, das in den vorherigen Abschnitten behandelt wurde. Wir haben die wichtigsten Punkte zusammengefasst, um Ihnen einen klaren Überblick zu geben. Bitte beachten Sie die Details, die in den folgenden Abschnitten weiter erläutert werden.\n\nHauptinhalt\n===========\n\nVielen Dank für Ihre Nachricht und Ihr Interesse an unseren Dienstleistungen. Wir schätzen Ihre Anfrage sehr und möchten Ihnen die bestmögliche Unterstützung bieten. Im Folgenden finden Sie eine Übersicht über die wichtigsten Informationen und nächsten Schritte, die wir gemeinsam unternehmen können, um Ihre Anforderungen zu erfüllen.\n\n- Betreff der E-Mail klar und prägnant formulieren\n- Höfliche Anrede und Begrüßung verwenden\n- Zweck der E-Mail direkt ansprechen\n- Wichtige Informationen und Details strukturiert darstellen\n- Klare Handlungsaufforderung oder nächste Schritte angeben\n- Freundlicher Abschluss und Grußformel\n- Kontaktdaten für Rückfragen bereitstellen\n\nUm die Lesbarkeit und Wirkung des Hauptinhalts zu verbessern, sollten Sie klare und prägnante Sätze verwenden. Vermeiden Sie Fachjargon, der das Verständnis erschweren könnte, und strukturieren Sie den Text logisch mit Absätzen und Überschriften. Nutzen Sie aktive Sprache, um den Leser direkt anzusprechen, und variieren Sie Satzlängen, um den Textfluss dynamisch zu gestalten. Visuelle Elemente wie Aufzählungen oder Tabellen können komplexe Informationen vereinfachen und die Aufmerksamkeit des Lesers lenken. Achten Sie darauf, dass der Text frei von Rechtschreib- und Grammatikfehlern ist, um die Professionalität zu wahren.\n\nEffektive E-Mail-Inhalte | Ineffektive E-Mail-Inhalte\n------------------------ | --------------------------\nKlarer Betreff | Unklarer oder fehlender Betreff\nPersonalisierte Ansprache | Allgemeine Ansprache\nKlare Handlungsaufforderung | Vage oder keine Handlungsaufforderung\nRelevante Informationen | Irrelevante oder überflüssige Informationen\nKurze und prägnante Sätze | Lange und komplizierte Sätze\nVisuell ansprechendes Layout | Unübersichtliches Layout\nFehlerfreie Grammatik und Rechtschreibung | Grammatik- und Rechtschreibfehler\n\nSchlussfolgerung\n================\n\nDie E-Mail fasst die wichtigsten Punkte zusammen, darunter die Notwendigkeit einer schnellen Antwort auf die Anfrage, die Klärung offener Fragen und die Bereitstellung zusätzlicher Informationen. Es wird auch auf die Bedeutung der Einhaltung von Fristen hingewiesen und die Bereitschaft zur weiteren Zusammenarbeit betont.\n\nVielen Dank für die hervorragende Zusammenarbeit und das Vertrauen, das Sie uns entgegengebracht haben. Es war eine Freude, mit Ihnen zusammenzuarbeiten und gemeinsam Erfolge zu erzielen. Wir wünschen Ihnen alles Gute für die Zukunft und hoffen, dass sich unsere Wege bald wieder kreuzen. Bleiben Sie gesund und erfolgreich!\n\n\nGenerated: 2026-03-22 18:03:25 UTC -------- - -Recipients: (not specified - this is a draft) -Style: business -Max length: 1000 characters - -Available_Document_References: - - (no documents) - -Based on the context, decide which documents to attach. - -CRITICAL: Use EXACT document references from Available_Document_References above. For individual documents: ALWAYS use docItem:: format (include filename) - -Return JSON: -{ - "subject": "subject line", - "body": "email body (HTML allowed)", - "attachments": ["docItem::"] -} diff --git a/prompts/20260322-180328-317-email_composition_response.txt b/prompts/20260322-180328-317-email_composition_response.txt deleted file mode 100644 index da0805aa..00000000 --- a/prompts/20260322-180328-317-email_composition_response.txt +++ /dev/null @@ -1,7 +0,0 @@ -```json -{ - "subject": "Wichtige Informationen für unsere zukünftige Zusammenarbeit", - "body": "Sehr geehrte Damen und Herren,

ich hoffe, diese Nachricht trifft Sie wohl. Ich möchte Ihnen heute ein wichtiges Thema vorstellen, das für unsere zukünftige Zusammenarbeit von großer Bedeutung ist.

Vielen Dank für Ihre Nachricht und Ihr Interesse an unseren Dienstleistungen. Wir schätzen Ihre Anfrage sehr und möchten Ihnen die bestmögliche Unterstützung bieten. Im Folgenden finden Sie eine Übersicht über die wichtigsten Informationen und nächsten Schritte, die wir gemeinsam unternehmen können, um Ihre Anforderungen zu erfüllen.

Bitte zögern Sie nicht, uns bei Fragen oder für weitere Informationen zu kontaktieren. Wir freuen uns auf Ihre Rückmeldung und eine erfolgreiche Zusammenarbeit.

Mit freundlichen Grüßen,

[Ihr Name]
[Ihre Position]
[Ihr Unternehmen]
[Ihre Kontaktdaten]", - "attachments": [] -} -``` \ No newline at end of file diff --git a/prompts/20260322-180338-318-chapter_structure_generation_prompt.txt b/prompts/20260322-180338-318-chapter_structure_generation_prompt.txt deleted file mode 100644 index 49ba0ee5..00000000 --- a/prompts/20260322-180338-318-chapter_structure_generation_prompt.txt +++ /dev/null @@ -1,119 +0,0 @@ -# TASK: Plan Document Structure (Documents + Chapters) - -This is a STRUCTURE PLANNING task. You define which documents to create and which chapters each document will have. -Chapter CONTENT will be generated in a later step - here you only plan the STRUCTURE and assign content references. -Return EXACTLY ONE complete JSON object. Do not generate multiple JSON objects, alternatives, or variations. Do not use separators like "---" between JSON objects. - -## USER REQUEST (for context) -``` -entwirf eine email mit dem inhalt des files davor -``` - -## AVAILABLE CONTENT PARTS - -(No content parts available) - -## CONTENT ASSIGNMENT RULE - -CRITICAL: Every chapter MUST have contentParts assigned if it relates to documents/images/data from the user request. -If the user request mentions documents/images/data, then EVERY chapter that generates content related to those references MUST assign the relevant ContentParts explicitly. - -Assignment logic: -- If chapter DISPLAYS a document/image → assign "object" format ContentPart with "caption" -- If chapter generates text content ABOUT a document/image/data → assign ContentPart with "instruction": - - Prefer "extracted" format if available (contains analyzed/extracted content) - - If only "object" format is available, use "object" format with "instruction" (to write ABOUT the image/document) -- If chapter's generationHint or purpose relates to a document/image/data mentioned in user request → it MUST have ContentParts assigned -- Multiple chapters might assign the same ContentPart (e.g., one chapter displays image, another writes about it) -- Use ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above -- Empty contentParts are only allowed if chapter generates content WITHOUT referencing any documents/images/data from the user request - -CRITICAL RULE: If the user request mentions BOTH: - a) Documents/images/data (listed in AVAILABLE CONTENT PARTS above), AND - b) Generic content types (article text, main content, body text, etc.) -Then chapters that generate those generic content types MUST assign the relevant ContentParts, because the content should relate to or be based on the provided documents/images/data. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential information only -- AVOID verbose, lengthy, or repetitive text - be concise and direct -- Prioritize FACTS over filler text - no introductions like "In this chapter..." -- Minimize system resources: shorter content = faster processing -- Quality over quantity: precise, meaningful content rather than padding - -## CHAPTER STRUCTURE REQUIREMENTS -- Generate chapters based on USER REQUEST - analyze what structure the user wants -- Create ONLY the minimum chapters needed to cover the user's request - avoid over-structuring -- HARD LIMIT: Maximum 7 chapters per document. If the topic can be covered in fewer, prefer fewer. Combine related topics into single chapters rather than creating many small ones. -- IMPORTANT: Each chapter MUST have ALL these fields: - - id: Unique identifier (e.g., "chapter_1") - - level: Heading level (1, 2, 3, etc.) - - title: Chapter title - - contentParts: Object mapping ContentPart IDs to usage instructions (MUST assign if chapter relates to documents/data from user request) - - generationHint: Description of what content to generate (including formatting/styling requirements) - - sections: Empty array [] (REQUIRED - sections are generated in next phase) -- contentParts: {"partId": {"instruction": "..."} or {"caption": "..."} or both} - Assign ContentParts as required by CONTENT ASSIGNMENT RULE above -- The "instruction" field for each ContentPart MUST contain ALL relevant details from the USER REQUEST that apply to content extraction for this specific chapter. Include all formatting rules, data requirements, constraints, and specifications mentioned in the user request that are relevant for processing this ContentPart in this chapter. -- generationHint: Keep CONCISE but include relevant details from the USER REQUEST. Focus on WHAT to generate, not HOW to phrase it verbosely. -- The number of chapters depends on the user request - create only what is requested. Do NOT create chapters for topics without available data. - -CRITICAL: Only create chapters for CONTENT sections, not for formatting/styling requirements. Formatting/styling requirements to be included in each generationHint if needed. - -## DOCUMENT STRUCTURE - -For each document, determine: -- outputFormat: From USER REQUEST (explicit mention or infer from purpose/content type). Default: "txt". Multiple documents can have different formats. -- language: From USER REQUEST (map to ISO 639-1: de, en, fr, it...). Default: "de". Multiple documents can have different languages. -- chapters: Structure appropriately for the format (e.g., pptx=slides, docx=sections, xlsx=worksheets). Match format capabilities and constraints. - -Required JSON fields: -- metadata: {"title": "...", "language": "..."} -- documents: Array with id, title, filename, outputFormat, language, chapters[] -- chapters: Array with id, level, title, contentParts, generationHint, sections[] - -EXAMPLE STRUCTURE (for reference only - adapt to user request): -{ - "metadata": { - "title": "Document Title", - "language": "de" - }, - "documents": [{ - "id": "doc_1", - "title": "Document Title", - "filename": "document.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Chapter Title", - "contentParts": { - "extracted_part_id": { - "instruction": "Use extracted content with ALL relevant details from user request" - } - }, - "generationHint": "Detailed description including ALL relevant details from user request for this chapter", - "sections": [] - } - ] - }] -} - -CRITICAL INSTRUCTIONS: -- Generate chapters based on USER REQUEST, NOT based on the example above -- The example shows the JSON structure format, NOT the required chapters -- Create only the chapters that match the user's request -- Adapt chapter titles and structure to match the user's specific request -- Determine outputFormat and language for each document by analyzing the USER REQUEST above -- The example shows placeholders "txt" and "de" - YOU MUST REPLACE THESE with actual values determined from the USER REQUEST - -MANDATORY CONTENT ASSIGNMENT CHECK: -For each chapter, verify: -1. Does the user request mention documents/images/data? (e.g., "photo", "image", "document", "data", "based on", "about") -2. Does this chapter's generationHint, title, or purpose relate to those documents/images/data mentioned in step 1? - - Examples: "article about the photo", "text describing the image", "analysis of the document", "content based on the data" - - Even if chapter doesn't explicitly say "about the image", if user request mentions both the image AND this chapter's content type → relate them -3. If YES to both → chapter MUST have contentParts assigned (cannot be empty {}) -4. If ContentPart is "object" format and chapter needs to write ABOUT it → assign with "instruction" field, not just "caption" - -OUTPUT FORMAT: Start with { and end with }. Do NOT use markdown code fences (```json). Do NOT add explanatory text before or after the JSON. Return ONLY the JSON object itself. diff --git a/prompts/20260322-180342-319-chapter_structure_generation_response.txt b/prompts/20260322-180342-319-chapter_structure_generation_response.txt deleted file mode 100644 index 30834524..00000000 --- a/prompts/20260322-180342-319-chapter_structure_generation_response.txt +++ /dev/null @@ -1,41 +0,0 @@ -{ - "metadata": { - "title": "Email Entwurf", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "Email Entwurf", - "filename": "email_entwurf.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Einleitung", - "contentParts": {}, - "generationHint": "Erstellen Sie eine kurze Einleitung für die E-Mail, die den Zweck der Nachricht beschreibt.", - "sections": [] - }, - { - "id": "chapter_2", - "level": 1, - "title": "Hauptinhalt", - "contentParts": {}, - "generationHint": "Formulieren Sie den Hauptinhalt der E-Mail basierend auf den Informationen, die im vorherigen Dokument enthalten sind.", - "sections": [] - }, - { - "id": "chapter_3", - "level": 1, - "title": "Abschluss", - "contentParts": {}, - "generationHint": "Schreiben Sie einen abschließenden Absatz, der die E-Mail höflich beendet.", - "sections": [] - } - ] - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180342-320-chapter_structure_generation_final_result.txt b/prompts/20260322-180342-320-chapter_structure_generation_final_result.txt deleted file mode 100644 index 30834524..00000000 --- a/prompts/20260322-180342-320-chapter_structure_generation_final_result.txt +++ /dev/null @@ -1,41 +0,0 @@ -{ - "metadata": { - "title": "Email Entwurf", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "Email Entwurf", - "filename": "email_entwurf.txt", - "outputFormat": "txt", - "language": "de", - "chapters": [ - { - "id": "chapter_1", - "level": 1, - "title": "Einleitung", - "contentParts": {}, - "generationHint": "Erstellen Sie eine kurze Einleitung für die E-Mail, die den Zweck der Nachricht beschreibt.", - "sections": [] - }, - { - "id": "chapter_2", - "level": 1, - "title": "Hauptinhalt", - "contentParts": {}, - "generationHint": "Formulieren Sie den Hauptinhalt der E-Mail basierend auf den Informationen, die im vorherigen Dokument enthalten sind.", - "sections": [] - }, - { - "id": "chapter_3", - "level": 1, - "title": "Abschluss", - "contentParts": {}, - "generationHint": "Schreiben Sie einen abschließenden Absatz, der die E-Mail höflich beendet.", - "sections": [] - } - ] - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180342-321-chapter_structure_chapter_1_prompt.txt b/prompts/20260322-180342-321-chapter_structure_chapter_1_prompt.txt deleted file mode 100644 index 0ff6db59..00000000 --- a/prompts/20260322-180342-321-chapter_structure_chapter_1_prompt.txt +++ /dev/null @@ -1,73 +0,0 @@ -TASK: Generate Chapter Sections Structure - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -CHAPTER: Einleitung (Level 1, ID: chapter_1) -GENERATION HINT: Erstellen Sie eine kurze Einleitung für die E-Mail, die den Zweck der Nachricht beschreibt. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT sections: Focus on essential information only -- AVOID creating too many sections - combine related content where possible -- Each section should serve a clear purpose with meaningful data -- If no relevant data exists for a topic, do NOT create a section for it -- Prefer ONE comprehensive section over multiple sparse sections -- HARD LIMIT: Maximum 5 sections per chapter. Combine related subtopics into single sections to stay within this limit. - -**CRITICAL**: The chapter's generationHint above describes what content this chapter should generate. If the generationHint references documents/images/data, then EACH section that generates content for this chapter MUST assign the relevant ContentParts from AVAILABLE CONTENT PARTS below. - -NOTE: Chapter already has a heading section. Do NOT generate a heading for the chapter title. - -## SECTION INDEPENDENCE -- Each section is independent and self-contained -- One section does NOT have information about another section -- Each section must provide its own context and be understandable alone - -AVAILABLE CONTENT PARTS: - -(No content parts specified for this chapter) - -## CONTENT ASSIGNMENT RULE - CRITICAL -If AVAILABLE CONTENT PARTS are listed above, then EVERY section that generates content related to those ContentParts MUST assign them explicitly. - -**Assignment logic:** -- If section generates text content ABOUT a ContentPart → assign "extracted" format ContentPart with appropriate instruction -- If section DISPLAYS a ContentPart → assign "object" format ContentPart -- If section's generationHint or purpose relates to a ContentPart listed above → it MUST have contentPartIds assigned -- If chapter's generationHint references documents/images/data AND section generates content for that chapter → section MUST assign relevant ContentParts -- Empty contentPartIds [] are only allowed if section generates content WITHOUT referencing any available ContentParts AND WITHOUT relating to chapter's generationHint - -## ACCEPTED CONTENT TYPES FOR THIS FORMAT -The document output format (txt) accepts only the following content types: -table, bullet_list, heading, paragraph, code_block - -**CRITICAL**: Only create sections with content types from this list. Other types will fail. - -useAiCall RULE (simple): -- useAiCall: true → Content needs AI processing (extract, transform, generate, filter, summarize) -- useAiCall: false → Content can be inserted directly without changes (Format is "object" or "reference") - -RETURN JSON: -{ - "sections": [ - { - "id": "section_1", - "content_type": "table", - "contentPartIds": ["extracted_part_id"], - "generationHint": "Description of what to extract or generate", - "useAiCall": true, - "elements": [] - } - ] -} - -**MANDATORY CONTENT ASSIGNMENT CHECK:** -For each section, verify: -1. Are ContentParts listed in AVAILABLE CONTENT PARTS above? -2. Does this section's generationHint or purpose relate to those ContentParts? -3. If YES to both → section MUST have contentPartIds assigned (cannot be empty []) -4. Assign ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above - -IMAGE SECTIONS: -- For image sections, always provide a "caption" field with a descriptive caption for the image. - -Return only valid JSON. Do not include any explanatory text outside the JSON. diff --git a/prompts/20260322-180342-322-chapter_structure_chapter_2_prompt.txt b/prompts/20260322-180342-322-chapter_structure_chapter_2_prompt.txt deleted file mode 100644 index da0c92f3..00000000 --- a/prompts/20260322-180342-322-chapter_structure_chapter_2_prompt.txt +++ /dev/null @@ -1,73 +0,0 @@ -TASK: Generate Chapter Sections Structure - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -CHAPTER: Hauptinhalt (Level 1, ID: chapter_2) -GENERATION HINT: Formulieren Sie den Hauptinhalt der E-Mail basierend auf den Informationen, die im vorherigen Dokument enthalten sind. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT sections: Focus on essential information only -- AVOID creating too many sections - combine related content where possible -- Each section should serve a clear purpose with meaningful data -- If no relevant data exists for a topic, do NOT create a section for it -- Prefer ONE comprehensive section over multiple sparse sections -- HARD LIMIT: Maximum 5 sections per chapter. Combine related subtopics into single sections to stay within this limit. - -**CRITICAL**: The chapter's generationHint above describes what content this chapter should generate. If the generationHint references documents/images/data, then EACH section that generates content for this chapter MUST assign the relevant ContentParts from AVAILABLE CONTENT PARTS below. - -NOTE: Chapter already has a heading section. Do NOT generate a heading for the chapter title. - -## SECTION INDEPENDENCE -- Each section is independent and self-contained -- One section does NOT have information about another section -- Each section must provide its own context and be understandable alone - -AVAILABLE CONTENT PARTS: - -(No content parts specified for this chapter) - -## CONTENT ASSIGNMENT RULE - CRITICAL -If AVAILABLE CONTENT PARTS are listed above, then EVERY section that generates content related to those ContentParts MUST assign them explicitly. - -**Assignment logic:** -- If section generates text content ABOUT a ContentPart → assign "extracted" format ContentPart with appropriate instruction -- If section DISPLAYS a ContentPart → assign "object" format ContentPart -- If section's generationHint or purpose relates to a ContentPart listed above → it MUST have contentPartIds assigned -- If chapter's generationHint references documents/images/data AND section generates content for that chapter → section MUST assign relevant ContentParts -- Empty contentPartIds [] are only allowed if section generates content WITHOUT referencing any available ContentParts AND WITHOUT relating to chapter's generationHint - -## ACCEPTED CONTENT TYPES FOR THIS FORMAT -The document output format (txt) accepts only the following content types: -table, bullet_list, heading, paragraph, code_block - -**CRITICAL**: Only create sections with content types from this list. Other types will fail. - -useAiCall RULE (simple): -- useAiCall: true → Content needs AI processing (extract, transform, generate, filter, summarize) -- useAiCall: false → Content can be inserted directly without changes (Format is "object" or "reference") - -RETURN JSON: -{ - "sections": [ - { - "id": "section_1", - "content_type": "table", - "contentPartIds": ["extracted_part_id"], - "generationHint": "Description of what to extract or generate", - "useAiCall": true, - "elements": [] - } - ] -} - -**MANDATORY CONTENT ASSIGNMENT CHECK:** -For each section, verify: -1. Are ContentParts listed in AVAILABLE CONTENT PARTS above? -2. Does this section's generationHint or purpose relate to those ContentParts? -3. If YES to both → section MUST have contentPartIds assigned (cannot be empty []) -4. Assign ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above - -IMAGE SECTIONS: -- For image sections, always provide a "caption" field with a descriptive caption for the image. - -Return only valid JSON. Do not include any explanatory text outside the JSON. diff --git a/prompts/20260322-180342-323-chapter_structure_chapter_3_prompt.txt b/prompts/20260322-180342-323-chapter_structure_chapter_3_prompt.txt deleted file mode 100644 index ef36813c..00000000 --- a/prompts/20260322-180342-323-chapter_structure_chapter_3_prompt.txt +++ /dev/null @@ -1,73 +0,0 @@ -TASK: Generate Chapter Sections Structure - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -CHAPTER: Abschluss (Level 1, ID: chapter_3) -GENERATION HINT: Schreiben Sie einen abschließenden Absatz, der die E-Mail höflich beendet. - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT sections: Focus on essential information only -- AVOID creating too many sections - combine related content where possible -- Each section should serve a clear purpose with meaningful data -- If no relevant data exists for a topic, do NOT create a section for it -- Prefer ONE comprehensive section over multiple sparse sections -- HARD LIMIT: Maximum 5 sections per chapter. Combine related subtopics into single sections to stay within this limit. - -**CRITICAL**: The chapter's generationHint above describes what content this chapter should generate. If the generationHint references documents/images/data, then EACH section that generates content for this chapter MUST assign the relevant ContentParts from AVAILABLE CONTENT PARTS below. - -NOTE: Chapter already has a heading section. Do NOT generate a heading for the chapter title. - -## SECTION INDEPENDENCE -- Each section is independent and self-contained -- One section does NOT have information about another section -- Each section must provide its own context and be understandable alone - -AVAILABLE CONTENT PARTS: - -(No content parts specified for this chapter) - -## CONTENT ASSIGNMENT RULE - CRITICAL -If AVAILABLE CONTENT PARTS are listed above, then EVERY section that generates content related to those ContentParts MUST assign them explicitly. - -**Assignment logic:** -- If section generates text content ABOUT a ContentPart → assign "extracted" format ContentPart with appropriate instruction -- If section DISPLAYS a ContentPart → assign "object" format ContentPart -- If section's generationHint or purpose relates to a ContentPart listed above → it MUST have contentPartIds assigned -- If chapter's generationHint references documents/images/data AND section generates content for that chapter → section MUST assign relevant ContentParts -- Empty contentPartIds [] are only allowed if section generates content WITHOUT referencing any available ContentParts AND WITHOUT relating to chapter's generationHint - -## ACCEPTED CONTENT TYPES FOR THIS FORMAT -The document output format (txt) accepts only the following content types: -table, bullet_list, heading, paragraph, code_block - -**CRITICAL**: Only create sections with content types from this list. Other types will fail. - -useAiCall RULE (simple): -- useAiCall: true → Content needs AI processing (extract, transform, generate, filter, summarize) -- useAiCall: false → Content can be inserted directly without changes (Format is "object" or "reference") - -RETURN JSON: -{ - "sections": [ - { - "id": "section_1", - "content_type": "table", - "contentPartIds": ["extracted_part_id"], - "generationHint": "Description of what to extract or generate", - "useAiCall": true, - "elements": [] - } - ] -} - -**MANDATORY CONTENT ASSIGNMENT CHECK:** -For each section, verify: -1. Are ContentParts listed in AVAILABLE CONTENT PARTS above? -2. Does this section's generationHint or purpose relate to those ContentParts? -3. If YES to both → section MUST have contentPartIds assigned (cannot be empty []) -4. Assign ContentPart IDs exactly as listed in AVAILABLE CONTENT PARTS above - -IMAGE SECTIONS: -- For image sections, always provide a "caption" field with a descriptive caption for the image. - -Return only valid JSON. Do not include any explanatory text outside the JSON. diff --git a/prompts/20260322-180343-324-chapter_structure_chapter_1_response.txt b/prompts/20260322-180343-324-chapter_structure_chapter_1_response.txt deleted file mode 100644 index e3f5e494..00000000 --- a/prompts/20260322-180343-324-chapter_structure_chapter_1_response.txt +++ /dev/null @@ -1,16 +0,0 @@ -```json -{ - "sections": [ - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Erstellen Sie eine kurze Einleitung für die E-Mail, die den Zweck der Nachricht beschreibt.", - "useAiCall": true, - "elements": [ - "Diese E-Mail dient dazu, den Empfänger über die neuesten Entwicklungen und wichtigen Informationen zu informieren. Unser Ziel ist es, Ihnen einen klaren Überblick über die aktuellen Themen zu geben und sicherzustellen, dass Sie alle notwendigen Details erhalten, um fundierte Entscheidungen treffen zu können." - ] - } - ] -} -``` \ No newline at end of file diff --git a/prompts/20260322-180344-325-chapter_structure_chapter_3_response.txt b/prompts/20260322-180344-325-chapter_structure_chapter_3_response.txt deleted file mode 100644 index c259f6a2..00000000 --- a/prompts/20260322-180344-325-chapter_structure_chapter_3_response.txt +++ /dev/null @@ -1,16 +0,0 @@ -```json -{ - "sections": [ - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Schreiben Sie einen abschließenden Absatz, der die E-Mail höflich beendet.", - "useAiCall": true, - "elements": [ - "Ich danke Ihnen herzlich für Ihre Aufmerksamkeit und hoffe, dass diese Informationen hilfreich für Sie waren. Sollten Sie weitere Fragen haben oder zusätzliche Informationen benötigen, zögern Sie bitte nicht, mich zu kontaktieren. Ich freue mich darauf, von Ihnen zu hören und wünsche Ihnen einen angenehmen Tag." - ] - } - ] -} -``` \ No newline at end of file diff --git a/prompts/20260322-180346-326-chapter_structure_chapter_2_response.txt b/prompts/20260322-180346-326-chapter_structure_chapter_2_response.txt deleted file mode 100644 index 8fadfa16..00000000 --- a/prompts/20260322-180346-326-chapter_structure_chapter_2_response.txt +++ /dev/null @@ -1,49 +0,0 @@ -```json -{ - "sections": [ - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Einleitung und Überblick über den Hauptinhalt der E-Mail", - "useAiCall": true, - "elements": [ - "In diesem Kapitel wird der Hauptinhalt der E-Mail behandelt, der auf den Informationen des vorherigen Dokuments basiert. Der Fokus liegt darauf, die wesentlichen Punkte klar und prägnant darzustellen." - ] - }, - { - "id": "section_2", - "content_type": "bullet_list", - "contentPartIds": [], - "generationHint": "Liste der wichtigsten Themen oder Punkte, die in der E-Mail behandelt werden", - "useAiCall": true, - "elements": [ - "Ziel der E-Mail", - "Wichtige Informationen oder Updates", - "Erforderliche Aktionen oder Antworten", - "Relevante Fristen oder Termine" - ] - }, - { - "id": "section_3", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Detaillierte Beschreibung eines spezifischen Themas oder Punktes", - "useAiCall": true, - "elements": [ - "Ein spezifisches Thema, das in der E-Mail behandelt wird, ist die Aktualisierung der Projektzeitpläne. Es ist wichtig, dass alle Beteiligten die neuen Fristen einhalten, um den reibungslosen Ablauf des Projekts zu gewährleisten." - ] - }, - { - "id": "section_4", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Zusammenfassung und Schlussfolgerung des Hauptinhalts", - "useAiCall": true, - "elements": [ - "Zusammenfassend enthält die E-Mail alle notwendigen Informationen, um die Empfänger über die aktuellen Entwicklungen zu informieren und sicherzustellen, dass alle erforderlichen Maßnahmen ergriffen werden. Bitte überprüfen Sie die Details sorgfältig und antworten Sie bei Bedarf zeitnah." - ] - } - ] -} -``` \ No newline at end of file diff --git a/prompts/20260322-180346-327-chapter_1_section_section_1_prompt.txt b/prompts/20260322-180346-327-chapter_1_section_section_1_prompt.txt deleted file mode 100644 index 84e54aec..00000000 --- a/prompts/20260322-180346-327-chapter_1_section_section_1_prompt.txt +++ /dev/null @@ -1,56 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_1 -- Content Type: paragraph -- Generation Hint: Erstellen Sie eine kurze Einleitung für die E-Mail, die den Zweck der Nachricht beschreibt. -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Following sections: -- section_1 (paragraph): -- section_2 (bullet_list): - diff --git a/prompts/20260322-180346-328-chapter_2_section_section_1_prompt.txt b/prompts/20260322-180346-328-chapter_2_section_section_1_prompt.txt deleted file mode 100644 index 6cef5371..00000000 --- a/prompts/20260322-180346-328-chapter_2_section_section_1_prompt.txt +++ /dev/null @@ -1,56 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_1 -- Content Type: paragraph -- Generation Hint: Einleitung und Überblick über den Hauptinhalt der E-Mail -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Following sections: -- section_1 (paragraph): -- section_2 (bullet_list): - diff --git a/prompts/20260322-180347-329-chapter_2_section_section_2_prompt.txt b/prompts/20260322-180347-329-chapter_2_section_section_2_prompt.txt deleted file mode 100644 index a984e32b..00000000 --- a/prompts/20260322-180347-329-chapter_2_section_section_2_prompt.txt +++ /dev/null @@ -1,59 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_2 -- Content Type: bullet_list -- Generation Hint: Liste der wichtigsten Themen oder Punkte, die in der E-Mail behandelt werden -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (bullet_list). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "bullet_list", - "content": {{"items": ["Item 1", "Item 2", "Item 3"]}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): - -Following sections: -- section_2 (bullet_list): -- section_3 (paragraph): - diff --git a/prompts/20260322-180347-330-chapter_2_section_section_3_prompt.txt b/prompts/20260322-180347-330-chapter_2_section_section_3_prompt.txt deleted file mode 100644 index d8179e33..00000000 --- a/prompts/20260322-180347-330-chapter_2_section_section_3_prompt.txt +++ /dev/null @@ -1,60 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_3 -- Content Type: paragraph -- Generation Hint: Detaillierte Beschreibung eines spezifischen Themas oder Punktes -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): -- section_1 (paragraph): - -Following sections: -- section_3 (paragraph): -- section_4 (paragraph): - diff --git a/prompts/20260322-180347-331-chapter_2_section_section_4_prompt.txt b/prompts/20260322-180347-331-chapter_2_section_section_4_prompt.txt deleted file mode 100644 index 4905c185..00000000 --- a/prompts/20260322-180347-331-chapter_2_section_section_4_prompt.txt +++ /dev/null @@ -1,60 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_4 -- Content Type: paragraph -- Generation Hint: Zusammenfassung und Schlussfolgerung des Hauptinhalts -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Previous sections: -- section_1 (paragraph): -- section_2 (bullet_list): - -Following sections: -- section_4 (paragraph): -- section_1 (paragraph): - diff --git a/prompts/20260322-180348-332-chapter_2_section_section_1_response.txt b/prompts/20260322-180348-332-chapter_2_section_section_1_response.txt deleted file mode 100644 index b2b8d46b..00000000 --- a/prompts/20260322-180348-332-chapter_2_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "In dieser E-Mail möchten wir Ihnen einen Überblick über die wichtigsten Informationen und Themen geben, die im vorherigen Dokument behandelt wurden. Unser Ziel ist es, Ihnen einen klaren und prägnanten Einblick in die wesentlichen Punkte zu bieten, um Ihnen bei der Entscheidungsfindung oder weiteren Planung zu helfen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180348-333-chapter_2_section_section_1_response.txt b/prompts/20260322-180348-333-chapter_2_section_section_1_response.txt deleted file mode 100644 index b2b8d46b..00000000 --- a/prompts/20260322-180348-333-chapter_2_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "In dieser E-Mail möchten wir Ihnen einen Überblick über die wichtigsten Informationen und Themen geben, die im vorherigen Dokument behandelt wurden. Unser Ziel ist es, Ihnen einen klaren und prägnanten Einblick in die wesentlichen Punkte zu bieten, um Ihnen bei der Entscheidungsfindung oder weiteren Planung zu helfen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180348-334-chapter_3_section_section_1_prompt.txt b/prompts/20260322-180348-334-chapter_3_section_section_1_prompt.txt deleted file mode 100644 index 65445e4e..00000000 --- a/prompts/20260322-180348-334-chapter_3_section_section_1_prompt.txt +++ /dev/null @@ -1,56 +0,0 @@ -# TASK: Generate Section Content - -LANGUAGE: Generate all content in DE language. All text, titles, headings, paragraphs, and content must be written in DE. - -## SECTION METADATA -- Section ID: section_1 -- Content Type: paragraph -- Generation Hint: Schreiben Sie einen abschließenden Absatz, der die E-Mail höflich beendet. -- Target Output Format: TXT (accepted content types: table, bullet_list, heading, paragraph, code_block) - -## CONTENT EFFICIENCY PRINCIPLES -- Generate COMPACT content: Focus on essential facts only -- AVOID verbose text, filler phrases, or redundant explanations -- Be CONCISE and direct - every word should add value -- NO introductory phrases like "This section describes..." or "Here we present..." -- Minimize output size for efficient processing - -## INSTRUCTIONS -1. Generate content based on the Generation Hint above. -2. Create appropriate content that matches the content_type (paragraph). -3. The content should be relevant to the USER REQUEST and fit the context of surrounding sections. -4. Return only valid JSON with "elements" array. -5. No HTML/styling: Plain text only, no markup. -6. Keep content CONCISE - focus on substance, not length. - -## OUTPUT FORMAT -Return a JSON object with this structure: - -{ - "elements": [ - { - "type": "paragraph", - "content": {{"text": "This is paragraph text."}} - } - ] -} - -Output requirements: -- "content" must be an object (never a string) -- Return only valid JSON - no text before, no text after, no comments, no explanations, no markdown code fences -- Start with { and end with } - return ONLY the JSON object itself -- Generate meaningful content based on the Generation Hint - -## USER REQUEST -``` -entwirf eine email mit dem inhalt des files davor -``` - -## CONTEXT - -## DOCUMENT CONTEXT - -Following sections: -- section_1 (paragraph): -- section_2 (bullet_list): - diff --git a/prompts/20260322-180348-335-chapter_2_section_section_2_response.txt b/prompts/20260322-180348-335-chapter_2_section_section_2_response.txt deleted file mode 100644 index 92f0e228..00000000 --- a/prompts/20260322-180348-335-chapter_2_section_section_2_response.txt +++ /dev/null @@ -1,16 +0,0 @@ -{ - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Wichtige Termine und Fristen", - "Zusammenfassung der letzten Besprechung", - "Anstehende Aufgaben und Verantwortlichkeiten", - "Aktuelle Projektfortschritte", - "Offene Fragen und Klärungsbedarf" - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180348-336-chapter_2_section_section_2_response.txt b/prompts/20260322-180348-336-chapter_2_section_section_2_response.txt deleted file mode 100644 index 92f0e228..00000000 --- a/prompts/20260322-180348-336-chapter_2_section_section_2_response.txt +++ /dev/null @@ -1,16 +0,0 @@ -{ - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Wichtige Termine und Fristen", - "Zusammenfassung der letzten Besprechung", - "Anstehende Aufgaben und Verantwortlichkeiten", - "Aktuelle Projektfortschritte", - "Offene Fragen und Klärungsbedarf" - ] - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180349-337-chapter_1_section_section_1_response.txt b/prompts/20260322-180349-337-chapter_1_section_section_1_response.txt deleted file mode 100644 index d7d98b9e..00000000 --- a/prompts/20260322-180349-337-chapter_1_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Diese E-Mail dient dazu, Sie über die neuesten Entwicklungen und wichtigen Informationen zu informieren, die für Sie von Interesse sein könnten. Bitte lesen Sie die folgenden Details aufmerksam durch, um auf dem neuesten Stand zu bleiben." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180349-338-chapter_1_section_section_1_response.txt b/prompts/20260322-180349-338-chapter_1_section_section_1_response.txt deleted file mode 100644 index d7d98b9e..00000000 --- a/prompts/20260322-180349-338-chapter_1_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Diese E-Mail dient dazu, Sie über die neuesten Entwicklungen und wichtigen Informationen zu informieren, die für Sie von Interesse sein könnten. Bitte lesen Sie die folgenden Details aufmerksam durch, um auf dem neuesten Stand zu bleiben." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180349-339-chapter_2_section_section_4_response.txt b/prompts/20260322-180349-339-chapter_2_section_section_4_response.txt deleted file mode 100644 index b5ea7edb..00000000 --- a/prompts/20260322-180349-339-chapter_2_section_section_4_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Zusammenfassend lässt sich sagen, dass der Hauptinhalt die wesentlichen Punkte und Schlussfolgerungen der vorherigen Abschnitte prägnant zusammenfasst. Die Kernaussagen wurden klar dargestellt, um die Effizienz der Kommunikation zu gewährleisten. Die wichtigsten Erkenntnisse wurden hervorgehoben, um eine klare und prägnante Botschaft zu vermitteln, die den Leser informiert und zum Nachdenken anregt. Diese Zusammenfassung dient als abschließender Überblick über die behandelten Themen und bietet eine solide Grundlage für weitere Diskussionen oder Entscheidungen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180349-340-chapter_2_section_section_4_response.txt b/prompts/20260322-180349-340-chapter_2_section_section_4_response.txt deleted file mode 100644 index b5ea7edb..00000000 --- a/prompts/20260322-180349-340-chapter_2_section_section_4_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Zusammenfassend lässt sich sagen, dass der Hauptinhalt die wesentlichen Punkte und Schlussfolgerungen der vorherigen Abschnitte prägnant zusammenfasst. Die Kernaussagen wurden klar dargestellt, um die Effizienz der Kommunikation zu gewährleisten. Die wichtigsten Erkenntnisse wurden hervorgehoben, um eine klare und prägnante Botschaft zu vermitteln, die den Leser informiert und zum Nachdenken anregt. Diese Zusammenfassung dient als abschließender Überblick über die behandelten Themen und bietet eine solide Grundlage für weitere Diskussionen oder Entscheidungen." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180349-341-chapter_2_section_section_3_response.txt b/prompts/20260322-180349-341-chapter_2_section_section_3_response.txt deleted file mode 100644 index 2d6a61f7..00000000 --- a/prompts/20260322-180349-341-chapter_2_section_section_3_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Eine E-Mail sollte klar und präzise sein, um die beabsichtigte Botschaft effektiv zu übermitteln. Beginnen Sie mit einer höflichen Anrede, gefolgt von einer kurzen Einführung, die den Zweck der E-Mail erklärt. Der Hauptteil sollte detaillierte Informationen oder Anfragen enthalten, die für den Empfänger relevant sind. Abschließend sollte eine freundliche Schlussformel stehen, die Dankbarkeit ausdrückt oder weitere Schritte vorschlägt. Achten Sie darauf, die E-Mail in einem professionellen Ton zu verfassen und Rechtschreibfehler zu vermeiden." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180349-342-chapter_2_section_section_3_response.txt b/prompts/20260322-180349-342-chapter_2_section_section_3_response.txt deleted file mode 100644 index 2d6a61f7..00000000 --- a/prompts/20260322-180349-342-chapter_2_section_section_3_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Eine E-Mail sollte klar und präzise sein, um die beabsichtigte Botschaft effektiv zu übermitteln. Beginnen Sie mit einer höflichen Anrede, gefolgt von einer kurzen Einführung, die den Zweck der E-Mail erklärt. Der Hauptteil sollte detaillierte Informationen oder Anfragen enthalten, die für den Empfänger relevant sind. Abschließend sollte eine freundliche Schlussformel stehen, die Dankbarkeit ausdrückt oder weitere Schritte vorschlägt. Achten Sie darauf, die E-Mail in einem professionellen Ton zu verfassen und Rechtschreibfehler zu vermeiden." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180350-343-chapter_3_section_section_1_response.txt b/prompts/20260322-180350-343-chapter_3_section_section_1_response.txt deleted file mode 100644 index 99a31cff..00000000 --- a/prompts/20260322-180350-343-chapter_3_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Vielen Dank für Ihre Aufmerksamkeit und Unterstützung. Sollten Sie weitere Fragen haben oder zusätzliche Informationen benötigen, zögern Sie bitte nicht, mich zu kontaktieren. Ich freue mich auf Ihre Rückmeldung und wünsche Ihnen einen angenehmen Tag." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180350-344-chapter_3_section_section_1_response.txt b/prompts/20260322-180350-344-chapter_3_section_section_1_response.txt deleted file mode 100644 index 99a31cff..00000000 --- a/prompts/20260322-180350-344-chapter_3_section_section_1_response.txt +++ /dev/null @@ -1,10 +0,0 @@ -{ - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Vielen Dank für Ihre Aufmerksamkeit und Unterstützung. Sollten Sie weitere Fragen haben oder zusätzliche Informationen benötigen, zögern Sie bitte nicht, mich zu kontaktieren. Ich freue mich auf Ihre Rückmeldung und wünsche Ihnen einen angenehmen Tag." - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180350-345-document_generation_response.txt b/prompts/20260322-180350-345-document_generation_response.txt deleted file mode 100644 index b826c78d..00000000 --- a/prompts/20260322-180350-345-document_generation_response.txt +++ /dev/null @@ -1,155 +0,0 @@ -{ - "metadata": { - "title": "Email Entwurf", - "language": "de" - }, - "documents": [ - { - "id": "doc_1", - "title": "Email Entwurf", - "filename": "email_entwurf.txt", - "outputFormat": "txt", - "language": "de", - "sections": [ - { - "id": "chapter_1_heading", - "content_type": "heading", - "elements": [ - { - "type": "heading", - "content": { - "text": "Einleitung", - "level": 1 - } - } - ] - }, - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Erstellen Sie eine kurze Einleitung für die E-Mail, die den Zweck der Nachricht beschreibt.", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Diese E-Mail dient dazu, Sie über die neuesten Entwicklungen und wichtigen Informationen zu informieren, die für Sie von Interesse sein könnten. Bitte lesen Sie die folgenden Details aufmerksam durch, um auf dem neuesten Stand zu bleiben." - } - } - ] - }, - { - "id": "chapter_2_heading", - "content_type": "heading", - "elements": [ - { - "type": "heading", - "content": { - "text": "Hauptinhalt", - "level": 1 - } - } - ] - }, - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Einleitung und Überblick über den Hauptinhalt der E-Mail", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "In dieser E-Mail möchten wir Ihnen einen Überblick über die wichtigsten Informationen und Themen geben, die im vorherigen Dokument behandelt wurden. Unser Ziel ist es, Ihnen einen klaren und prägnanten Einblick in die wesentlichen Punkte zu bieten, um Ihnen bei der Entscheidungsfindung oder weiteren Planung zu helfen." - } - } - ] - }, - { - "id": "section_2", - "content_type": "bullet_list", - "contentPartIds": [], - "generationHint": "Liste der wichtigsten Themen oder Punkte, die in der E-Mail behandelt werden", - "useAiCall": true, - "elements": [ - { - "type": "bullet_list", - "content": { - "items": [ - "Wichtige Termine und Fristen", - "Zusammenfassung der letzten Besprechung", - "Anstehende Aufgaben und Verantwortlichkeiten", - "Aktuelle Projektfortschritte", - "Offene Fragen und Klärungsbedarf" - ] - } - } - ] - }, - { - "id": "section_3", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Detaillierte Beschreibung eines spezifischen Themas oder Punktes", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Eine E-Mail sollte klar und präzise sein, um die beabsichtigte Botschaft effektiv zu übermitteln. Beginnen Sie mit einer höflichen Anrede, gefolgt von einer kurzen Einführung, die den Zweck der E-Mail erklärt. Der Hauptteil sollte detaillierte Informationen oder Anfragen enthalten, die für den Empfänger relevant sind. Abschließend sollte eine freundliche Schlussformel stehen, die Dankbarkeit ausdrückt oder weitere Schritte vorschlägt. Achten Sie darauf, die E-Mail in einem professionellen Ton zu verfassen und Rechtschreibfehler zu vermeiden." - } - } - ] - }, - { - "id": "section_4", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Zusammenfassung und Schlussfolgerung des Hauptinhalts", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Zusammenfassend lässt sich sagen, dass der Hauptinhalt die wesentlichen Punkte und Schlussfolgerungen der vorherigen Abschnitte prägnant zusammenfasst. Die Kernaussagen wurden klar dargestellt, um die Effizienz der Kommunikation zu gewährleisten. Die wichtigsten Erkenntnisse wurden hervorgehoben, um eine klare und prägnante Botschaft zu vermitteln, die den Leser informiert und zum Nachdenken anregt. Diese Zusammenfassung dient als abschließender Überblick über die behandelten Themen und bietet eine solide Grundlage für weitere Diskussionen oder Entscheidungen." - } - } - ] - }, - { - "id": "chapter_3_heading", - "content_type": "heading", - "elements": [ - { - "type": "heading", - "content": { - "text": "Abschluss", - "level": 1 - } - } - ] - }, - { - "id": "section_1", - "content_type": "paragraph", - "contentPartIds": [], - "generationHint": "Schreiben Sie einen abschließenden Absatz, der die E-Mail höflich beendet.", - "useAiCall": true, - "elements": [ - { - "type": "paragraph", - "content": { - "text": "Vielen Dank für Ihre Aufmerksamkeit und Unterstützung. Sollten Sie weitere Fragen haben oder zusätzliche Informationen benötigen, zögern Sie bitte nicht, mich zu kontaktieren. Ich freue mich auf Ihre Rückmeldung und wünsche Ihnen einen angenehmen Tag." - } - } - ] - } - ], - "metadata": { - "outputStyle": "document" - } - } - ] -} \ No newline at end of file diff --git a/prompts/20260322-180350-346-email_composition_prompt.txt b/prompts/20260322-180350-346-email_composition_prompt.txt deleted file mode 100644 index 9fbf808c..00000000 --- a/prompts/20260322-180350-346-email_composition_prompt.txt +++ /dev/null @@ -1,22 +0,0 @@ -Compose an email based on this context: -------- -Email Entwurf\n=============\n\nEinleitung\n==========\n\nDiese E-Mail dient dazu, Sie über die neuesten Entwicklungen und wichtigen Informationen zu informieren, die für Sie von Interesse sein könnten. Bitte lesen Sie die folgenden Details aufmerksam durch, um auf dem neuesten Stand zu bleiben.\n\nHauptinhalt\n===========\n\nIn dieser E-Mail möchten wir Ihnen einen Überblick über die wichtigsten Informationen und Themen geben, die im vorherigen Dokument behandelt wurden. Unser Ziel ist es, Ihnen einen klaren und prägnanten Einblick in die wesentlichen Punkte zu bieten, um Ihnen bei der Entscheidungsfindung oder weiteren Planung zu helfen.\n\n- Wichtige Termine und Fristen\n- Zusammenfassung der letzten Besprechung\n- Anstehende Aufgaben und Verantwortlichkeiten\n- Aktuelle Projektfortschritte\n- Offene Fragen und Klärungsbedarf\n\nEine E-Mail sollte klar und präzise sein, um die beabsichtigte Botschaft effektiv zu übermitteln. Beginnen Sie mit einer höflichen Anrede, gefolgt von einer kurzen Einführung, die den Zweck der E-Mail erklärt. Der Hauptteil sollte detaillierte Informationen oder Anfragen enthalten, die für den Empfänger relevant sind. Abschließend sollte eine freundliche Schlussformel stehen, die Dankbarkeit ausdrückt oder weitere Schritte vorschlägt. Achten Sie darauf, die E-Mail in einem professionellen Ton zu verfassen und Rechtschreibfehler zu vermeiden.\n\nZusammenfassend lässt sich sagen, dass der Hauptinhalt die wesentlichen Punkte und Schlussfolgerungen der vorherigen Abschnitte prägnant zusammenfasst. Die Kernaussagen wurden klar dargestellt, um die Effizienz der Kommunikation zu gewährleisten. Die wichtigsten Erkenntnisse wurden hervorgehoben, um eine klare und prägnante Botschaft zu vermitteln, die den Leser informiert und zum Nachdenken anregt. Diese Zusammenfassung dient als abschließender Überblick über die behandelten Themen und bietet eine solide Grundlage für weitere Diskussionen oder Entscheidungen.\n\nAbschluss\n=========\n\nVielen Dank für Ihre Aufmerksamkeit und Unterstützung. Sollten Sie weitere Fragen haben oder zusätzliche Informationen benötigen, zögern Sie bitte nicht, mich zu kontaktieren. Ich freue mich auf Ihre Rückmeldung und wünsche Ihnen einen angenehmen Tag.\n\n\nGenerated: 2026-03-22 18:03:50 UTC -------- - -Recipients: (not specified - this is a draft) -Style: business -Max length: 1000 characters - -Available_Document_References: - - (no documents) - -Based on the context, decide which documents to attach. - -CRITICAL: Use EXACT document references from Available_Document_References above. For individual documents: ALWAYS use docItem:: format (include filename) - -Return JSON: -{ - "subject": "subject line", - "body": "email body (HTML allowed)", - "attachments": ["docItem::"] -} diff --git a/prompts/20260322-180353-347-email_composition_response.txt b/prompts/20260322-180353-347-email_composition_response.txt deleted file mode 100644 index fd6df685..00000000 --- a/prompts/20260322-180353-347-email_composition_response.txt +++ /dev/null @@ -1,7 +0,0 @@ -```json -{ - "subject": "Aktuelle Entwicklungen und wichtige Informationen", - "body": "

Sehr geehrte Damen und Herren,

Diese E-Mail dient dazu, Sie über die neuesten Entwicklungen und wichtigen Informationen zu informieren, die für Sie von Interesse sein könnten. Bitte lesen Sie die folgenden Details aufmerksam durch, um auf dem neuesten Stand zu bleiben.

In dieser E-Mail möchten wir Ihnen einen Überblick über die wichtigsten Informationen und Themen geben, die im vorherigen Dokument behandelt wurden. Unser Ziel ist es, Ihnen einen klaren und prägnanten Einblick in die wesentlichen Punkte zu bieten, um Ihnen bei der Entscheidungsfindung oder weiteren Planung zu helfen.

  • Wichtige Termine und Fristen
  • Zusammenfassung der letzten Besprechung
  • Anstehende Aufgaben und Verantwortlichkeiten
  • Aktuelle Projektfortschritte
  • Offene Fragen und Klärungsbedarf

Vielen Dank für Ihre Aufmerksamkeit und Unterstützung. Sollten Sie weitere Fragen haben oder zusätzliche Informationen benötigen, zögern Sie bitte nicht, mich zu kontaktieren. Ich freue mich auf Ihre Rückmeldung und wünsche Ihnen einen angenehmen Tag.

", - "attachments": [] -} -``` \ No newline at end of file diff --git a/prompts/20260322-182034-348-email_composition_prompt.txt b/prompts/20260322-182034-348-email_composition_prompt.txt deleted file mode 100644 index 1ad0eb2c..00000000 --- a/prompts/20260322-182034-348-email_composition_prompt.txt +++ /dev/null @@ -1,22 +0,0 @@ -Compose an email based on this context: -------- -meeting_zusammenfassung_downloadfilebypath_r0t0a0.html -------- - -Recipients: (not specified - this is a draft) -Style: business -Max length: 1000 characters - -Available_Document_References: - - (no documents) - -Based on the context, decide which documents to attach. - -CRITICAL: Use EXACT document references from Available_Document_References above. For individual documents: ALWAYS use docItem:: format (include filename) - -Return JSON: -{ - "subject": "subject line", - "body": "email body (HTML allowed)", - "attachments": ["docItem::"] -} diff --git a/prompts/20260322-182036-349-email_composition_response.txt b/prompts/20260322-182036-349-email_composition_response.txt deleted file mode 100644 index b738fca2..00000000 --- a/prompts/20260322-182036-349-email_composition_response.txt +++ /dev/null @@ -1,7 +0,0 @@ -```json -{ - "subject": "Meeting Summary and Follow-Up", - "body": "

Dear Team,

I hope this message finds you well. I am writing to provide a summary of our recent meeting. Please find the details below:

Meeting Summary:

  • Discussion on project timelines and deliverables.
  • Review of current progress and challenges.
  • Action items and responsibilities assigned to team members.

Unfortunately, there are no documents available for attachment at this time. If you have any questions or require further clarification, please do not hesitate to reach out.

Best regards,
Your Name

", - "attachments": [] -} -``` \ No newline at end of file