Spaces:
Running
Running
| { | |
| "$schema": "http://json-schema.org/draft-07/schema#", | |
| "title": "PromptTemplatesConfig", | |
| "type": "object", | |
| "properties": { | |
| "templates": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "id": { | |
| "type": "string" | |
| }, | |
| "category": { | |
| "type": "string" | |
| }, | |
| "label": { | |
| "type": "string" | |
| }, | |
| "description": { | |
| "type": "string" | |
| }, | |
| "templateBody": { | |
| "type": "string" | |
| }, | |
| "example": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "id", | |
| "category", | |
| "label", | |
| "templateBody" | |
| ], | |
| "additionalProperties": false | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "templates" | |
| ], | |
| "additionalProperties": false | |
| } |