You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/oss/concepts/providers-and-models.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -150,17 +150,17 @@ To find available model names for a provider, refer to the provider's own docume
150
150
151
151
## Use new models immediately
152
152
153
-
Because LangChain provider packages pass model names directly to the provider's API, you can use new models the moment a provider releases them — no LangChain update required. Simply pass the new model name:
153
+
Because LangChain provider packages pass model names directly to the provider's API, you can use new models the moment a provider releases them—no LangChain update required. Simply pass the new model name:
154
154
155
155
:::python
156
156
```python
157
-
model = init_chat_model("anthropic:claude-mythos")
157
+
model = init_chat_model("google_genai:gemini-3.1-pro-preview")
158
158
```
159
159
:::
160
160
161
161
:::js
162
162
```typescript
163
-
const model =awaitinitChatModel("anthropic:claude-mythos");
163
+
const model =awaitinitChatModel("google_genai:gemini-3.1-pro-preview");
Copy file name to clipboardExpand all lines: src/oss/deepagents/cli/configuration.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -70,7 +70,7 @@ Then override per-project where needed by placing a `.env` in the project direct
70
70
```toml
71
71
[models]
72
72
default = "ollama:qwen3:4b"# your intentional long-term preference
73
-
recent = "anthropic:claude-sonnet-4-5"# last /model switch (written automatically)
73
+
recent = "google_genai:gemini-3.1-pro-preview"# last /model switch (written automatically)
74
74
```
75
75
76
76
`[models].default` always takes priority over `[models].recent`. The `/model` command only writes to `[models].recent`, so your configured default is never overwritten by mid-session switches. To remove the default, use `/model --default --clear` or delete the `default` key from the config file.
@@ -223,7 +223,7 @@ To override model profile fields at runtime without editing the config file, pas
Copy file name to clipboardExpand all lines: src/oss/deepagents/customization.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -86,7 +86,7 @@ For the full parameter list, see the [`createDeepAgent`](https://reference.langc
86
86
87
87
## Model
88
88
89
-
Pass a `model` string in `provider:model` format, or an initialized model instance. Defaults to `anthropic:claude-sonnet-4-6`. See [supported models](/oss/deepagents/models#supported-models) for all providers and [suggested models](/oss/deepagents/models#suggested-models) for tested recommendations.
89
+
Pass a `model` string in `provider:model` format, or an initialized model instance. See [supported models](/oss/deepagents/models#supported-models) for all providers and [suggested models](/oss/deepagents/models#suggested-models) for tested recommendations.
90
90
91
91
<Tip>
92
92
Use the `provider:model` format (for example `openai:gpt-5`) to quickly switch between models.
Copy file name to clipboardExpand all lines: src/oss/deepagents/quickstart.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ This guide walks you through creating your first deep agent with planning, file
14
14
15
15
## Prerequisites
16
16
17
-
Before you begin, make sure you have an API key from a model provider (e.g., Anthropic, OpenAI).
17
+
Before you begin, make sure you have an API key from a model provider (e.g., Gemini, Anthropic, OpenAI).
18
18
19
19
<Note>
20
20
Deep Agents require a model that supports [tool calling](/oss/langchain/models#tool-calling). See [customization](/oss/deepagents/customization#model) for how to configure your model.
@@ -208,7 +208,7 @@ Use this to run an internet search for a given query. You can specify the max nu
208
208
"""
209
209
```
210
210
211
-
Pass a `model` string in `provider:model` format, or an initialized model instance. Defaults to `anthropic:claude-sonnet-4-6`. See [supported models](/oss/deepagents/models#supported-models) for all providers and [suggested models](/oss/deepagents/models#suggested-models) for tested recommendations.
211
+
Pass a `model` string in `provider:model` format, or an initialized model instance. See [supported models](/oss/deepagents/models#supported-models) for all providers and [suggested models](/oss/deepagents/models#suggested-models) for tested recommendations.
0 commit comments