File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
10
10
11
11
- Adds AI model status and model switcher to the _ Home_ view ([ #4064 ] ( https://github.com/gitkraken/vscode-gitlens/issues/4064 ) )
12
12
- Adds Anthropic Claude 3.7 Sonnet model for GitLens' AI features ([ #4101 ] ( https://github.com/gitkraken/vscode-gitlens/issues/4101 ) )
13
+ - Adds Google Gemini 2.0 Flash-Lite model for GitLens' AI features ([ #4104 ] ( https://github.com/gitkraken/vscode-gitlens/issues/4104 ) )
13
14
14
15
### Changed
15
16
Original file line number Diff line number Diff line change @@ -21,11 +21,25 @@ const models: GeminiModel[] = [
21
21
provider : provider ,
22
22
hidden : true ,
23
23
} ,
24
+ {
25
+ id : 'gemini-2.0-flash-lite' ,
26
+ name : 'Gemini 2.0 Flash-Lite' ,
27
+ maxTokens : { input : 1048576 , output : 8192 } ,
28
+ provider : provider ,
29
+ } ,
30
+ {
31
+ id : 'gemini-2.0-flash-lite-001' ,
32
+ name : 'Gemini 2.0 Flash-Lite' ,
33
+ maxTokens : { input : 1048576 , output : 8192 } ,
34
+ provider : provider ,
35
+ hidden : true ,
36
+ } ,
24
37
{
25
38
id : 'gemini-2.0-flash-lite-preview-02-05' ,
26
39
name : 'Gemini 2.0 Flash-Lite (Preview)' ,
27
40
maxTokens : { input : 1048576 , output : 8192 } ,
28
41
provider : provider ,
42
+ hidden : true ,
29
43
} ,
30
44
{
31
45
id : 'gemini-2.0-pro-exp-02-05' ,
You can’t perform that action at this time.
0 commit comments