Skip to content

Commit b04bb53

Browse files
committed
Closes #4064 adds AI model status & picker to Home
1 parent 1b74a41 commit b04bb53

File tree

21 files changed

+360
-176
lines changed

21 files changed

+360
-176
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
66

77
## [Unreleased]
88

9+
### Added
10+
11+
- Adds AI model status and model switcher to the _Home_ view ([#4064](https://github.com/gitkraken/vscode-gitlens/issues/4064))
12+
913
### Fixed
1014

1115
- Fixes Generate Commit Message Error - Anthropic ([#4071](https://github.com/gitkraken/vscode-gitlens/issues/4071))

docs/telemetry-events.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110

111111
### ai/explain
112112

113-
> Sent when explaining changes from wip, commits, stashes, patches,etc.
113+
> Sent when explaining changes from wip, commits, stashes, patches, etc.
114114
115115
```typescript
116116
{
@@ -199,6 +199,26 @@ or
199199
}
200200
```
201201

202+
### ai/switchModel
203+
204+
> Sent when switching ai models
205+
206+
```typescript
207+
{
208+
'model.id': string,
209+
'model.provider.id': 'anthropic' | 'deepseek' | 'gemini' | 'github' | 'huggingface' | 'openai' | 'vscode' | 'xai',
210+
'model.provider.name': string
211+
}
212+
```
213+
214+
or
215+
216+
```typescript
217+
{
218+
'failed': true
219+
}
220+
```
221+
202222
### associateIssueWithBranch/action
203223

204224
> Sent when the user chooses to manage integrations

0 commit comments

Comments
 (0)