diff --git a/readme.md b/readme.md
index 206229b..c55e366 100644
--- a/readme.md
+++ b/readme.md
@@ -132,14 +132,14 @@ This package is [ESM only](https://gist.github.com/sindresorhus/a39789f98801d908
Each AI SDK adapter has its own package which needs to be installed.
+#### Vercel AI SDk
+
-#### Vercel AI SDk
-
-
```sh
npm install @agentic/ai-sdk ai
```
+
```ts
import { createAISDKTools } from '@agentic/ai-sdk'
@@ -149,14 +149,14 @@ See [examples/ai-sdk](./examples/ai-sdk) for a full example.
+#### LangChain
+
-#### LangChain
-
-
```sh
npm install @agentic/langchain @langchain/core langchain
```
+
```ts
import { createLangChainTools } from '@agentic/langchain'
@@ -166,14 +166,14 @@ See [examples/langchain](./examples/langchain) for a full example.
+#### LlamaIndex
+
-#### LlamaIndex
-
-
```sh
npm install @agentic/llamaindex llamaindex
```
+
```ts
import { createLlamaIndexTools } from '@agentic/llamaindex'
@@ -183,14 +183,14 @@ See [examples/llamaindex](./examples/llamaindex) for a full example.
+#### Firebase Genkit
+
-#### Firebase Genkit
-
-
```sh
npm install @agentic/genkit @genkit-ai/ai @genkit-ai/core
```
+
```ts
import { createGenkitTools } from '@agentic/genkit'
@@ -200,14 +200,14 @@ See [examples/genkit](./examples/genkit) for a full example.
+#### Dexa Dexter
+
-#### Dexa Dexter
-
-
```sh
npm install @agentic/dexter @dexaai/dexter
```
+
```ts
import { createDexterFunctions } from '@agentic/dexter'
@@ -217,14 +217,14 @@ See [examples/dexter](./examples/dexter) for a full example.
+#### OpenAI SDK
+
-#### OpenAI SDK
-
-
```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.