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 1d9f7f2 commit e3c0cd6Copy full SHA for e3c0cd6
src/api/providers/gemini.ts
@@ -456,7 +456,10 @@ export class GeminiHandler extends BaseProvider implements SingleCompletionHandl
456
}
457
458
public getThoughtSignature(): string | undefined {
459
- return this.lastThoughtSignature
+ // Disabled to prevent "Corrupted thought signature" errors on task resumption.
460
+ // Gemini thought signatures are session-specific and cannot be reliably reused
461
+ // across API calls or after task resumption from history.
462
+ return undefined
463
464
465
public getResponseId(): string | undefined {
0 commit comments