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/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