From 7317c04058d5e7fdaefa9a38cd0e9cb89d3d11c4 Mon Sep 17 00:00:00 2001 From: Peli de Halleux Date: Sat, 21 Dec 2024 14:59:49 +0000 Subject: [PATCH] =?UTF-8?q?docs:=20=E2=9C=8F=EF=B8=8F=20add=20note=20about?= =?UTF-8?q?=20builtin=20Zod=20support=20in=20schemas?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- packages/cli/README.md | 2 +- packages/vscode/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1eedc0dcc9..35dd9df720 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ $`Analyze FILE and extract data to JSON using the ${schema} schema.` ### 📋 Data Schemas -Define, validate, and repair data using [schemas](https://microsoft.github.io/genaiscript/reference/scripts/schemas). +Define, validate, and repair data using [schemas](https://microsoft.github.io/genaiscript/reference/scripts/schemas). Zod support builtin. ```js const data = defSchema("MY_DATA", { type: "array", items: { ... } }) diff --git a/packages/cli/README.md b/packages/cli/README.md index 5dc1df8570..c249ab1d4e 100644 --- a/packages/cli/README.md +++ b/packages/cli/README.md @@ -94,7 +94,7 @@ $`Analyze FILE and extract data to JSON using the ${schema} schema.` ### 📋 Data Schemas -Define, validate, and repair data using [schemas](https://microsoft.github.io/genaiscript/reference/scripts/schemas). +Define, validate, and repair data using [schemas](https://microsoft.github.io/genaiscript/reference/scripts/schemas). Zod support builtin. ```js const data = defSchema("MY_DATA", { type: "array", items: { ... } }) diff --git a/packages/vscode/README.md b/packages/vscode/README.md index c649e8b11f..2e9fd84dde 100644 --- a/packages/vscode/README.md +++ b/packages/vscode/README.md @@ -24,7 +24,7 @@ $`Analyze FILE and - 📁 Scripts are [files](https://microsoft.github.io/genaiscript/reference/scripts/)! They can be versioned, shared, forked, ... -- 📊 Define, validate, repair data using [schemas](https://microsoft.github.io/genaiscript/reference/scripts/schemas). +- 📊 Define, validate, repair data using [schemas](https://microsoft.github.io/genaiscript/reference/scripts/schemas). Zod support builtin. ```js wrap const data = defSchema("MY_DATA",