Skip to content

Commit d2d3c30

Browse files
Merge pull request continuedev#3417 from continuedev/pe/gemini-model-updates
Update config_schema.json
2 parents 2af6d08 + 8585db1 commit d2d3c30

File tree

1 file changed

+57
-55
lines changed

1 file changed

+57
-55
lines changed

extensions/vscode/config_schema.json

+57-55
Original file line numberDiff line numberDiff line change
@@ -931,7 +931,9 @@
931931
"gemini-1.5-pro-latest",
932932
"gemini-1.5-pro",
933933
"gemini-1.5-flash-latest",
934-
"gemini-1.5-flash"
934+
"gemini-1.5-flash",
935+
"gemini-1.5-flash-8b",
936+
"gemini-2.0-flash-exp"
935937
]
936938
}
937939
}
@@ -2803,7 +2805,10 @@
28032805
"type": "object",
28042806
"properties": {
28052807
"model": {
2806-
"enum": ["cohere.rerank-v3-5:0", "amazon.rerank-v1:0"]
2808+
"enum": [
2809+
"cohere.rerank-v3-5:0",
2810+
"amazon.rerank-v1:0"
2811+
]
28072812
}
28082813
},
28092814
"required": ["model"]
@@ -3127,65 +3132,62 @@
31273132
"description": "Allow tool use. Currently only supported with Claude 3.5 Sonnet",
31283133
"default": true
31293134
},
3130-
"modelContextProtocolServers": {
3131-
"type": "array",
3132-
"items": {
3133-
"type": "object",
3134-
"properties": {
3135-
"transport": {
3136-
"oneOf": [
3137-
{
3138-
"type": "object",
3139-
"properties": {
3140-
"type": {
3141-
"type": "string",
3142-
"enum": ["stdio"]
3143-
},
3144-
"command": {
3135+
"modelContextProtocolServer": {
3136+
"type": "object",
3137+
"properties": {
3138+
"transport": {
3139+
"oneOf": [
3140+
{
3141+
"type": "object",
3142+
"properties": {
3143+
"type": {
3144+
"type": "string",
3145+
"enum": ["stdio"]
3146+
},
3147+
"command": {
3148+
"type": "string"
3149+
},
3150+
"args": {
3151+
"type": "array",
3152+
"items": {
31453153
"type": "string"
3146-
},
3147-
"args": {
3148-
"type": "array",
3149-
"items": {
3150-
"type": "string"
3151-
}
31523154
}
3153-
},
3154-
"required": ["type", "command", "args"]
3155+
}
31553156
},
3156-
{
3157-
"type": "object",
3158-
"properties": {
3159-
"type": {
3160-
"type": "string",
3161-
"enum": ["websocket"]
3162-
},
3163-
"url": {
3164-
"type": "string",
3165-
"format": "uri"
3166-
}
3157+
"required": ["type", "command", "args"]
3158+
},
3159+
{
3160+
"type": "object",
3161+
"properties": {
3162+
"type": {
3163+
"type": "string",
3164+
"enum": ["websocket"]
31673165
},
3168-
"required": ["type", "url"]
3166+
"url": {
3167+
"type": "string",
3168+
"format": "uri"
3169+
}
31693170
},
3170-
{
3171-
"type": "object",
3172-
"properties": {
3173-
"type": {
3174-
"type": "string",
3175-
"enum": ["sse"]
3176-
},
3177-
"url": {
3178-
"type": "string",
3179-
"format": "uri"
3180-
}
3171+
"required": ["type", "url"]
3172+
},
3173+
{
3174+
"type": "object",
3175+
"properties": {
3176+
"type": {
3177+
"type": "string",
3178+
"enum": ["sse"]
31813179
},
3182-
"required": ["type", "url"]
3183-
}
3184-
]
3185-
}
3186-
},
3187-
"required": ["transport"]
3188-
}
3180+
"url": {
3181+
"type": "string",
3182+
"format": "uri"
3183+
}
3184+
},
3185+
"required": ["type", "url"]
3186+
}
3187+
]
3188+
}
3189+
},
3190+
"required": ["transport"]
31893191
}
31903192
}
31913193
}

0 commit comments

Comments
 (0)