File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
firebase-ai/src/main/kotlin/com/google/firebase/ai/type Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -365,7 +365,7 @@ internal fun Part.toInternal(): InternalPart {
365365 )
366366 is CodeExecutionResultPart ->
367367 CodeExecutionResultPart .Internal (
368- CodeExecutionResultPart .Internal .CodeExecutionResult (outcome.toInternal() , output),
368+ CodeExecutionResultPart .Internal .CodeExecutionResult (outcome, output),
369369 isThought,
370370 thoughtSignature
371371 )
@@ -421,7 +421,7 @@ internal fun InternalPart.toPublic(): Part {
421421 )
422422 is CodeExecutionResultPart .Internal ->
423423 CodeExecutionResultPart (
424- codeExecutionResult.outcome.toPublic() ,
424+ codeExecutionResult.outcome,
425425 codeExecutionResult.output,
426426 thought ? : false ,
427427 thoughtSignature
You can’t perform that action at this time.
0 commit comments