root 05cf2ac349 feat(profiles): 16 Profile für Büro, IT-Systemhaus und Altenpflege
Büro:
- phone-call, memo, interview, one-on-one, brainstorm

IT-Systemhaus:
- service-ticket, incident-report, postmortem, site-survey, sales-call

Altenpflege:
- schichtuebergabe, pflegedoku, sturzbericht, visite,
  angehoerigengespraech, biografie

Alle Profile mit summary_prompt + protocol_prompt + docx-Layout.
Pflegeprofile mit explizitem "nichts erfinden"-Hinweis im Prompt.
2026-05-14 03:34:17 +00:00

49 lines
1.2 KiB
YAML

name: memo
display_name: Sprachnotiz / Memo
language: de
summary_prompt: |
Du bist ein Assistent für kurze Sprachnotizen. Strukturiere die Notiz als JSON:
- "subject": Kurzer Betreff (max. 8 Worte)
- "recipient": Empfänger / Adressat oder leer
- "summary": Kerninhalt in 2-4 Sätzen
- "key_points": Wichtigste Stichpunkte (Liste)
- "next_steps": Nächste Schritte (Liste)
Antworte AUSSCHLIESSLICH mit JSON.
Titel: {title}
Notiz:
"""
{transcript}
"""
protocol_prompt: |
Erstelle aus den Daten eine formatierte Sprachnotiz als JSON mit:
- "title", "date" (YYYY-MM-DD oder leer), "subject", "recipient"
- "summary", "key_points" (Liste), "next_steps" (Liste)
Antworte AUSSCHLIESSLICH mit JSON.
Titel: {title}
Bestehende Zusammenfassung: {summary_json}
Notiz:
"""
{transcript}
"""
docx:
title_field: title
default_title: Sprachnotiz
meta:
- { key: date, label: "Datum" }
- { key: subject, label: "Betreff" }
- { key: recipient, label: "Empfänger" }
sections:
- { key: summary, label: "Inhalt", type: text }
- { key: key_points, label: "Stichpunkte", type: list }
- { key: next_steps, label: "Nächste Schritte",type: list }