Add an hourly weather report prompt with JSON output

This commit is contained in:
2026-06-14 07:42:44 -05:00
parent 594f5bc580
commit 154c1ea8ce
7 changed files with 100 additions and 6 deletions

View File

@@ -0,0 +1,26 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "weatherreporter.hourly.generated_text.schema.json",
"title": "Hourly GeneratedText",
"type": "object",
"additionalProperties": false,
"required": [
"summary",
"timing",
"impacts"
],
"properties": {
"summary": {
"type": "string"
},
"timing": {
"type": "string"
},
"impacts": {
"type": "string"
},
"confidence": {
"type": "string"
}
}
}