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.
62 lines
2.0 KiB
YAML
62 lines
2.0 KiB
YAML
name: visite
|
|
display_name: Arztvisite
|
|
language: de
|
|
|
|
summary_prompt: |
|
|
Du bist medizinischer Dokumentationsassistent. Strukturiere die Visite als JSON:
|
|
|
|
- "resident": Bewohner/Patient
|
|
- "doctor": Arzt/Ärztin
|
|
- "speciality": Fachrichtung oder leer
|
|
- "summary": Visiten-Zusammenfassung in 2-4 Sätzen
|
|
- "findings": Befunde / aktuelle Beobachtungen (Liste)
|
|
- "diagnoses": Diagnosen (Liste — bevorzugt im Klartext, keine ICD-Codes erfinden)
|
|
- "orders": ärztliche Anordnungen (Liste)
|
|
- "medication_changes": Medikamentenänderungen (Liste {"action": "neu/ab/dosis", "drug", "dose"})
|
|
- "next_visit": Folgevisite oder leer
|
|
|
|
Wichtig: Medikamenten-Namen genau wie diktiert übernehmen, nichts erraten.
|
|
Antworte AUSSCHLIESSLICH mit JSON.
|
|
|
|
Titel: {title}
|
|
|
|
Diktat:
|
|
"""
|
|
{transcript}
|
|
"""
|
|
|
|
protocol_prompt: |
|
|
Erstelle ein Visiten-Protokoll als JSON mit:
|
|
- "title", "date", "resident", "doctor", "speciality", "documented_by"
|
|
- "summary"
|
|
- "findings" (Liste), "diagnoses" (Liste), "orders" (Liste)
|
|
- "medication_changes" (Liste {"action","drug","dose"})
|
|
- "next_visit"
|
|
|
|
Antworte AUSSCHLIESSLICH mit JSON.
|
|
|
|
Titel: {title}
|
|
Bestehende Zusammenfassung: {summary_json}
|
|
|
|
Diktat:
|
|
"""
|
|
{transcript}
|
|
"""
|
|
|
|
docx:
|
|
title_field: title
|
|
default_title: Visiten-Protokoll
|
|
meta:
|
|
- { key: date, label: "Datum" }
|
|
- { key: resident, label: "Bewohner/Patient" }
|
|
- { key: doctor, label: "Arzt/Ärztin" }
|
|
- { key: speciality, label: "Fachrichtung" }
|
|
- { key: documented_by, label: "Dokumentiert von" }
|
|
- { key: next_visit, label: "Folgevisite" }
|
|
sections:
|
|
- { key: summary, label: "Zusammenfassung", type: text }
|
|
- { key: findings, label: "Befunde", type: list }
|
|
- { key: diagnoses, label: "Diagnosen", type: list }
|
|
- { key: orders, label: "Ärztliche Anordnungen", type: list }
|
|
- { key: medication_changes, label: "Medikamenten-Änderungen", type: tasks }
|