mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-12 23:01:21 +00:00
fix: disable Gemini thought signature persistence to prevent corrupted signature errors (#10554)
This commit is contained in:
parent
1d9f7f2aa6
commit
e3c0cd64dc
1 changed files with 4 additions and 1 deletions
|
|
@ -456,7 +456,10 @@ export class GeminiHandler extends BaseProvider implements SingleCompletionHandl
|
|||
}
|
||||
|
||||
public getThoughtSignature(): string | undefined {
|
||||
return this.lastThoughtSignature
|
||||
// Disabled to prevent "Corrupted thought signature" errors on task resumption.
|
||||
// Gemini thought signatures are session-specific and cannot be reliably reused
|
||||
// across API calls or after task resumption from history.
|
||||
return undefined
|
||||
}
|
||||
|
||||
public getResponseId(): string | undefined {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue