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
"markdownDescription": "Specifies the AI model to use for GitLens' AI features. Should be formatted as `provider:model` (e.g. `openai:gpt-4o` or `anthropic:claude-3-5-sonnet-latest`), or `vscode` for models provided by the VS Code extension API (e.g. Copilot)",
"markdownDescription": "Specifies the AI provider and model to use for GitLens' AI features. Should be formatted as `provider:model` (e.g. `openai:gpt-4o` or `anthropic:claude-3-5-sonnet-latest`), `gitkraken` for GitKraken AI provided models, or `vscode` for models provided by the VS Code extension API (e.g. Copilot)",
4028
4028
"scope": "window",
4029
4029
"order": 10,
4030
4030
"tags": [
4031
4031
"preview"
4032
4032
]
4033
4033
},
4034
+
"gitlens.ai.gitkraken.model": {
4035
+
"type": [
4036
+
"string",
4037
+
"null"
4038
+
],
4039
+
"default": null,
4040
+
"pattern": "^(.*):(.*)$",
4041
+
"markdownDescription": "Specifies the GitKraken AI provided model to use for GitLens' AI features, formatted as `provider:model`",
4042
+
"scope": "window",
4043
+
"order": 5,
4044
+
"tags": [
4045
+
"preview"
4046
+
]
4047
+
},
4034
4048
"gitlens.ai.vscode.model": {
4035
4049
"type": [
4036
4050
"string",
4037
4051
"null"
4038
4052
],
4039
4053
"default": null,
4040
4054
"pattern": "^(.*):(.*)$",
4041
-
"markdownDescription": "Specifies the VS Code provided model to use for GitLens' AI features, formatted as `vendor:family`",
4055
+
"markdownDescription": "Specifies the VS Code provided model to use for GitLens' AI features, formatted as `provider:model`",
0 commit comments