Skip to content

Commit 4fe0b57

Browse files
committed
standardize
1 parent 44b58ca commit 4fe0b57

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/oss/langchain/quickstart.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -836,7 +836,7 @@ Along the way you will explore the following concepts:
836836
from langchain.chat_models import init_chat_model
837837

838838
model = init_chat_model(
839-
"claude-haiku-4-5",
839+
"google_genai:gemini-3.1-pro-preview",
840840
temperature=0.5,
841841
timeout=300,
842842
max_tokens=25000,
@@ -1186,7 +1186,7 @@ Along the way you will explore the following concepts:
11861186

11871187

11881188
model = init_chat_model(
1189-
"claude-haiku-4-5",
1189+
"google_genai:gemini-3.1-pro-preview",
11901190
temperature=0.5,
11911191
timeout=300,
11921192
max_tokens=25000,
@@ -1279,7 +1279,7 @@ Along the way you will explore the following concepts:
12791279
},
12801280
);
12811281

1282-
const model = await initChatModel("claude-haiku-4-5", {
1282+
const model = await initChatModel("google_genai:gemini-3.1-pro-preview", {
12831283
modelProvider: "anthropic",
12841284
temperature: 0.5,
12851285
maxTokens: 25_000,

0 commit comments

Comments
 (0)