We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 680f9e4 commit 600c7ddCopy full SHA for 600c7dd
src/ai/aiProviderService.ts
@@ -270,7 +270,10 @@ export class AIProviderService implements Disposable {
270
const start = Date.now();
271
try {
272
const result = await (options?.progress != null
273
- ? window.withProgress(options.progress, () => promise)
+ ? window.withProgress(
274
+ { ...options.progress, title: `Generating commit message with ${model.name}...` },
275
+ () => promise,
276
+ )
277
: promise);
278
279
payload['output.length'] = result?.length;
0 commit comments