29 lines
775 B
YAML
29 lines
775 B
YAML
id: dnd.scene_map
|
|
version: "1.0.0"
|
|
default_profile: nemotron-3-ultra
|
|
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: ../common/transcript.system.md
|
|
cache_control:
|
|
type: ephemeral
|
|
ttl: 1h
|
|
- role: user
|
|
content_file: ../common/transcript.user.md
|
|
cache_control:
|
|
type: ephemeral
|
|
ttl: 1h
|
|
- role: user
|
|
content_file: ./scene_map.task.md
|
|
- role: user
|
|
content_file: ./scene_map.instructions.md
|
|
output:
|
|
format: json
|
|
validation_mode: json_schema
|
|
schema_path: pipeline-dnd/analyze/scene_map.schema.json
|
|
repair_attempts: 2 |