From 1cd4ca31d5d257b7aa170ad569d4eec79db0de53 Mon Sep 17 00:00:00 2001 From: Chris Read Date: Sun, 14 Sep 2025 17:24:22 -0700 Subject: [PATCH] update docs --- docs/configuration/models.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/configuration/models.mdx b/docs/configuration/models.mdx index d4cd30b6e..07472a8b6 100644 --- a/docs/configuration/models.mdx +++ b/docs/configuration/models.mdx @@ -168,7 +168,7 @@ Vercel AI SDK supports providers for OpenAI, Anthropic, and Google, along with s To get started, you'll need to install the `ai` package and the provider you want to use. For example, to use Amazon Bedrock, you'll need to install the `@ai-sdk/amazon-bedrock` package. -You'll also need to use the [Vercel AI SDK external client](https://github.com/browserbase/stagehand/blob/main/examples/external_clients/aisdk.ts) as a template to create a client for your model. +You'll also need to import the [Vercel AI SDK external client](https://github.com/browserbase/stagehand/blob/main/lib/llm/aisdk.ts) which is exposed as `AISdkClient` to create a client for your model. @@ -190,13 +190,13 @@ You'll also need to use the [Vercel AI SDK external client](https://github.com/b -To get started, you can use the [Vercel AI SDK external client](https://github.com/browserbase/stagehand/blob/84f810b4631291307a32a47addad7e26e9c1deb3/examples/external_clients/aisdk.ts) as a template to create a client for your model. +To get started, you can use the [Vercel AI SDK external client](https://github.com/browserbase/stagehand/blob/main/lib/llm/aisdk.ts) which is exposed as `AISdkClient` to create a client for your model. ```ts // Install/import the provider you want to use. // For example, to use OpenAI, import `openai` from @ai-sdk/openai import { bedrock } from "@ai-sdk/amazon-bedrock"; -import { AISdkClient } from "./external_clients/aisdk"; +import { AISdkClient } from "@browserbasehq/stagehand"; const stagehand = new Stagehand({ llmClient: new AISdkClient({