Skip to content

Commit 8bbd99d

Browse files
fix: update package name references to dotpromptz-handlebars (#403)
* docs: clarify input.default type in frontmatter docs - Change input.default type from 'any' to 'Map<string,any>' - Aligns documentation with TypeScript implementation - Fixes #306 * docs: clarify picoschema usage in frontmatter docs - Add Picoschema links to input.schema and output.schema descriptions - Explain that Picoschema is a compact YAML format that compiles to JSON Schema - Resolves confusion about schema syntax vs standard JSON Schema Fixes #307 * fix: update package name references to dotpromptz-handlebars - Update smoke_tests dependency from dotprompt-handlebars to dotpromptz-handlebars - Update README title to match actual PyPI package name - Completes rename from PR #353 that missed these 2 files Fixes #344
1 parent 8fca8d0 commit 8bbd99d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

python/handlebarrz/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# dotprompt-handlebars
1+
# dotpromptz-handlebars
22

33
**DISCLAIMER**: Project only intended to be used for dotprompt package. Support for other use cases is not guaranteed.

python/handlebarrz/smoke_tests/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
[project]
1818
authors = [{ name = "Abraham Lazaro", email = "lazaromartinez@google.com" }]
19-
dependencies = ["dotprompt-handlebars>=0.0.1.dev1"]
19+
dependencies = ["dotpromptz-handlebars>=0.1.3"]
2020
name = "handlebarrz-smoke-tests"
2121
readme = "README.md"
2222
requires-python = ">=3.10"

third_party/docsite/src/content/docs/reference/frontmatter.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,11 +117,11 @@ metadata:
117117
- **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.
118118
- **Properties:**
119119
- `default`:
120-
- **Type:** `any`
120+
- **Type:** `Map<string,any>`
121121
- **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.
122122
- `schema`:
123123
- **Type:** [Schema](schema)
124-
- **Description:** Schema representing the input values for the prompt. Must correspond to a JSON Schema `object` type.
124+
- **Description:** Schema representing the input values for the prompt. Schemas use [Picoschema](/reference/picoschema/) syntax—a compact YAML format that compiles to JSON Schema.
125125

126126
### `output`
127127

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

139139
### `metadata`
140140

0 commit comments

Comments
 (0)