25 lines
703 B
YAML
25 lines
703 B
YAML
id: weather.today_generated_text
|
|
version: "1.0.0"
|
|
default_profile: local-heavy
|
|
#default_profile: gemini-3-flash-lite
|
|
description: Today's weather report analysis prompt.
|
|
inputs:
|
|
- name: data_package
|
|
required: true
|
|
content_type: application/json
|
|
description: Structured weather data package
|
|
messages:
|
|
- role: system
|
|
content_file: ../common/system.md
|
|
- role: user
|
|
content_file: ../common/data_package.user.md
|
|
- role: user
|
|
content: |
|
|
{{input "data_package"}}
|
|
- role: user
|
|
content_file: ./today_generated_text.user.md
|
|
output:
|
|
format: json
|
|
validation_mode: json_schema
|
|
schema_path: pipeline-weather/today/today.generated_text.schema.json
|
|
repair_attempts: 2 |