From 4fb4658ff6360fb2551425d889032c06f5753d6a Mon Sep 17 00:00:00 2001 From: Travis Fischer Date: Sun, 4 Aug 2024 07:04:02 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- legacy/readme.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/legacy/readme.md b/legacy/readme.md index c55e3667..6597c5ab 100644 --- a/legacy/readme.md +++ b/legacy/readme.md @@ -135,11 +135,11 @@ Each AI SDK adapter has its own package which needs to be installed. #### Vercel AI SDk
- +Install + ```sh npm install @agentic/ai-sdk ai ``` - ```ts import { createAISDKTools } from '@agentic/ai-sdk' @@ -152,11 +152,11 @@ See [examples/ai-sdk](./examples/ai-sdk) for a full example. #### LangChain
- +Install + ```sh npm install @agentic/langchain @langchain/core langchain ``` - ```ts import { createLangChainTools } from '@agentic/langchain' @@ -169,11 +169,11 @@ See [examples/langchain](./examples/langchain) for a full example. #### LlamaIndex
- +Install + ```sh npm install @agentic/llamaindex llamaindex ``` - ```ts import { createLlamaIndexTools } from '@agentic/llamaindex' @@ -186,11 +186,11 @@ See [examples/llamaindex](./examples/llamaindex) for a full example. #### Firebase Genkit
- +Install + ```sh npm install @agentic/genkit @genkit-ai/ai @genkit-ai/core ``` - ```ts import { createGenkitTools } from '@agentic/genkit' @@ -203,11 +203,11 @@ See [examples/genkit](./examples/genkit) for a full example. #### Dexa Dexter
- +Install + ```sh npm install @agentic/dexter @dexaai/dexter ``` - ```ts import { createDexterFunctions } from '@agentic/dexter' @@ -220,11 +220,11 @@ See [examples/dexter](./examples/dexter) for a full example. #### OpenAI SDK
- +Install + ```sh npm install openai ``` - There's no need for an adapter with the OpenAI SDK since all agentic tools are compatible with OpenAI by default. You can use `AIFunctionSet.specs` for function calling or `AIFunctionSet.toolSpecs` for parallel tool calling.