File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -169,6 +169,7 @@ export class RooHandler extends BaseOpenAiCompatibleProvider<string> {
169169 text ?: string
170170 summary ?: string
171171 data ?: string
172+ id ?: string | null
172173 format ?: string
173174 signature ?: string
174175 index ?: number
@@ -193,6 +194,7 @@ export class RooHandler extends BaseOpenAiCompatibleProvider<string> {
193194 existing . data = ( existing . data || "" ) + detail . data
194195 }
195196 // Update other fields if provided
197+ if ( detail . id !== undefined ) existing . id = detail . id
196198 if ( detail . format !== undefined ) existing . format = detail . format
197199 if ( detail . signature !== undefined ) existing . signature = detail . signature
198200 } else {
@@ -202,6 +204,7 @@ export class RooHandler extends BaseOpenAiCompatibleProvider<string> {
202204 text : detail . text ,
203205 summary : detail . summary ,
204206 data : detail . data ,
207+ id : detail . id ,
205208 format : detail . format ,
206209 signature : detail . signature ,
207210 index,
You can’t perform that action at this time.
0 commit comments