Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -117,11 +117,11 @@ metadata:
- **Description:** Defines the input variables the prompt. If `input` is not specified, the implementation should accept any `Map<string,any>` values as input and pass them to the prompt template.
- **Properties:**
- `default`:
- **Type:** `any`
- **Type:** `Map<string,any>`
- **Description:** Defines the default input variable values to use if none are provided. Input values passed from the implementation should be merged into these values with a shallow merge strategy.
- `schema`:
- **Type:** [Schema](schema)
- **Description:** Schema representing the input values for the prompt. Must correspond to a JSON Schema `object` type.
- **Description:** Schema representing the input values for the prompt. Schemas use [Picoschema](/reference/picoschema/) syntax—a compact YAML format that compiles to JSON Schema.

### `output`

Expand All @@ -134,7 +134,7 @@ metadata:
- **Description:** Desired output format for this prompt. Output formats are implementation-specific, but
- `schema`:
- **Type:** [Schema](schema)
- **Description:** Schema representing the expected output from the prompt. Must correspond to a JSON Schema `object` type.
- **Description:** Schema representing the expected output from the prompt. Schemas use [Picoschema](/reference/picoschema/) syntax—a compact YAML format that compiles to JSON Schema.

### `metadata`

Expand Down