Skip to content

Commit 6846c70

Browse files
authored
Add GCP Vertex description to Deep Search (#1180)
This PR adds examples for Deep Search model configuration on GCP Vertex. This already works, it just wasn't documented.
1 parent 25da273 commit 6846c70

File tree

1 file changed

+31
-2
lines changed

1 file changed

+31
-2
lines changed

docs/code-search/types/deep-search.mdx

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,13 @@ Deep Search is disabled by default. To enable it, ask your site administrator to
3232

3333
For optimal performance, Deep Search is specialized to only use one model. Currently, Deep Search only supports Claude Sonnet 4.
3434

35-
### Configuring Deep Search on Amazon Bedrock
35+
### Configuring Deep Search on Amazon Bedrock or GCP Vertex
3636

3737
Include configuration for Claude Sonnet 4 in [modelOverrides](/cody/enterprise/model-configuration#model-overrides) in your site configuration. For more information on configuring models, refer to [Model Configuration](/cody/enterprise/model-configuration).
3838

39-
Example for Sonnet 4 configuration inside `modelOverrides`:
39+
Examples for Sonnet 4 configuration inside `modelOverrides`:
4040

41+
Amazon Bedrock:
4142
```json
4243
{
4344
"modelRef": "aws-bedrock::v1::claude-sonnet-4",
@@ -56,11 +57,39 @@ Example for Sonnet 4 configuration inside `modelOverrides`:
5657
},
5758
```
5859

60+
GCP Vertex:
61+
```json
62+
{
63+
"modelRef": "google-anthropic::v2::claude-sonnet-4",
64+
"modelName": "claude-sonnet-4@20250514",
65+
"displayName": "Claude Sonnet 4 (GCP Vertex)",
66+
"capabilities": [
67+
"chat",
68+
"tools",
69+
],
70+
"category": "balanced",
71+
"status": "stable",
72+
"contextWindow": {
73+
"maxInputTokens": 200000,
74+
"maxOutputTokens": 32000,
75+
}
76+
},
77+
```
78+
5979
Then, configure Deep Search to use this model in `experimentalFeatures`:
6080

81+
Amazon Bedrock:
6182
```json
6283
"experimentalFeatures": {
6384
"deepSearch.enabled": true,
6485
"deepSearch.model": "aws-bedrock::v1::claude-sonnet-4"
6586
},
6687
```
88+
89+
GCP Vertex:
90+
```json
91+
"experimentalFeatures": {
92+
"deepSearch.enabled": true,
93+
"deepSearch.model": "google-anthropic::v2::claude-sonnet-4"
94+
},
95+
```

0 commit comments

Comments
 (0)