mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-08 22:21:23 +00:00
Exclude the ID from Roo reasoning details (#9847)
This commit is contained in:
parent
b9e2fd16b7
commit
581256dec0
1 changed files with 0 additions and 3 deletions
|
|
@ -169,7 +169,6 @@ export class RooHandler extends BaseOpenAiCompatibleProvider<string> {
|
|||
text?: string
|
||||
summary?: string
|
||||
data?: string
|
||||
id?: string | null
|
||||
format?: string
|
||||
signature?: string
|
||||
index?: number
|
||||
|
|
@ -194,7 +193,6 @@ export class RooHandler extends BaseOpenAiCompatibleProvider<string> {
|
|||
existing.data = (existing.data || "") + detail.data
|
||||
}
|
||||
// Update other fields if provided
|
||||
if (detail.id !== undefined) existing.id = detail.id
|
||||
if (detail.format !== undefined) existing.format = detail.format
|
||||
if (detail.signature !== undefined) existing.signature = detail.signature
|
||||
} else {
|
||||
|
|
@ -204,7 +202,6 @@ export class RooHandler extends BaseOpenAiCompatibleProvider<string> {
|
|||
text: detail.text,
|
||||
summary: detail.summary,
|
||||
data: detail.data,
|
||||
id: detail.id,
|
||||
format: detail.format,
|
||||
signature: detail.signature,
|
||||
index,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue