Skip to content

Commit 9456d9d

Browse files
committed
update
1 parent 9db12b2 commit 9456d9d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

firebase-ai/api.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ package com.google.firebase.ai.type {
219219
}
220220

221221
public final class CodeExecutionResultPart implements com.google.firebase.ai.type.Part {
222-
ctor public CodeExecutionResultPart(String outcome, String output);
222+
ctor @Deprecated public CodeExecutionResultPart(String outcome, String output);
223223
method public boolean executionSucceeded();
224224
method public String getOutcome();
225225
method public String getOutput();

firebase-ai/src/main/kotlin/com/google/firebase/ai/type/Part.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ internal constructor(
6868
internal val thoughtSignature: String?
6969
) : Part {
7070

71+
@Deprecated("Part of the model response. Do not instantiate directly.")
7172
public constructor(outcome: String, output: String) : this(outcome, output, false, null)
7273

7374
/** Indicates if the code execution was successful */

0 commit comments

Comments
 (0)