From d2b48c999e6281fc377e8f67108b1586038d2e6e Mon Sep 17 00:00:00 2001 From: Travis Fischer Date: Sun, 4 Aug 2024 07:18:34 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=98=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- readme.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index bb64f5c..fe811fc 100644 --- a/readme.md +++ b/readme.md @@ -126,12 +126,13 @@ You can pass as many of these `AIFunctionLike` objects as you'd like and you can npm install @agentic/stdlib @agentic/core zod ``` -This package is [ESM only](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c) and requires `Node.js >= 18` or an equivalent environment (bun, deno, CF workers, etc). - - `@agentic/core` - exports core AI utils and `@aiFunction` decorator - `@agentic/stdlib` - exports all of the built-in AI tools (convenience wrapper around the individual tool packages; see [Optimized Imports](#optimized-imports) if you'd rather import the individual packages directly) - `zod` - used for schema validation +> [!NOTE] +> This package is [ESM only](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c) and requires `Node.js >= 18` or an equivalent environment (bun, deno, CF workers, etc). + ### Optimized Imports `@agentic/stdlib` is just a convenience package which re-exports all of the built-in AI tool packages. If you want to optimize your imports, you can replace `@agentic/stdlib` with the specific AI tools you want. For example: