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.
66 lines
2.1 KiB
YAML
66 lines
2.1 KiB
YAML
name: site-survey
|
|
display_name: IT-Bestandsaufnahme
|
|
language: de
|
|
|
|
summary_prompt: |
|
|
Du bist Assistent für IT-Site-Surveys. Strukturiere die Bestandsaufnahme als JSON:
|
|
|
|
- "customer": Kundenname
|
|
- "location": Standort / Adresse
|
|
- "summary": Gesamteindruck in 2-4 Sätzen
|
|
- "hardware": Liste der erfassten Hardware (z. B. "Server Dell R740", "Switch HP 2530-24")
|
|
- "software": Liste eingesetzter Software / Versionen
|
|
- "licenses": vorhandene Lizenzen (Liste)
|
|
- "network": Netzwerk-Topologie / Auffälligkeiten (kurz)
|
|
- "backup_status": Backup-Lage (kurz)
|
|
- "risks": identifizierte Risiken (Liste)
|
|
- "recommendations": Empfehlungen (Liste)
|
|
- "estimated_effort": geschätzter Aufwand für Umsetzung oder leer
|
|
|
|
Antworte AUSSCHLIESSLICH mit JSON.
|
|
|
|
Titel: {title}
|
|
|
|
Transkript:
|
|
"""
|
|
{transcript}
|
|
"""
|
|
|
|
protocol_prompt: |
|
|
Erstelle einen formellen Site-Survey-Report als JSON mit:
|
|
- "title", "date", "customer", "location", "surveyor"
|
|
- "summary"
|
|
- "hardware", "software", "licenses" (Listen)
|
|
- "network", "backup_status"
|
|
- "risks" (Liste), "recommendations" (Liste)
|
|
- "estimated_effort"
|
|
|
|
Antworte AUSSCHLIESSLICH mit JSON.
|
|
|
|
Titel: {title}
|
|
Bestehende Zusammenfassung: {summary_json}
|
|
|
|
Transkript:
|
|
"""
|
|
{transcript}
|
|
"""
|
|
|
|
docx:
|
|
title_field: title
|
|
default_title: IT-Bestandsaufnahme
|
|
meta:
|
|
- { key: date, label: "Datum" }
|
|
- { key: customer, label: "Kunde" }
|
|
- { key: location, label: "Standort" }
|
|
- { key: surveyor, label: "Aufgenommen von" }
|
|
sections:
|
|
- { key: summary, label: "Gesamteindruck", type: text }
|
|
- { key: hardware, label: "Hardware", type: list }
|
|
- { key: software, label: "Software", type: list }
|
|
- { key: licenses, label: "Lizenzen", type: list }
|
|
- { key: network, label: "Netzwerk", type: text }
|
|
- { key: backup_status, label: "Backup", type: text }
|
|
- { key: risks, label: "Risiken", type: list }
|
|
- { key: recommendations, label: "Empfehlungen", type: list }
|
|
- { key: estimated_effort, label: "Geschätzter Aufwand", type: text }
|