26 lines
672 B
YAML
26 lines
672 B
YAML
id: dnd.scene_map
|
|
version: "1.0.0"
|
|
default_profile: gemma-4-31b
|
|
description: Generates a D&D session scene map, using a transcript as input.
|
|
inputs:
|
|
- name: transcript
|
|
required: true
|
|
content_type: application/json
|
|
description: Structured recap source transcript
|
|
messages:
|
|
- role: system
|
|
content_file: ./scene_map.system.md
|
|
- role: user
|
|
content_file: ./scene_map.user.md
|
|
- role: user
|
|
content: |
|
|
<<<CURRENT_SESSION_TRANSCRIPT
|
|
|
|
{{input "transcript"}}
|
|
|
|
CURRENT_SESSION_TRANSCRIPT>>>
|
|
output:
|
|
format: json
|
|
validation_mode: json_schema
|
|
schema_path: automation-pipeline-dnd/analyze/scene_map.schema.json
|
|
repair_attempts: 0 |