Skip to content

Commit 3842c23

Browse files
committed
Add missing declarations after main merge
1 parent 086d27c commit 3842c23

File tree

1 file changed

+2
-3
lines changed
  • firebase-vertexai/src/main/kotlin/com/google/firebase/vertexai/type

1 file changed

+2
-3
lines changed

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,23 +49,22 @@ public class InlineDataPart(public val mimeType: String, public val inlineData:
4949
*
5050
* @param functionCall The information provided by the model to call a function.
5151
*/
52-
class FunctionCallPart(public val functionCall: FunctionCall) : Part
52+
public class FunctionCallPart(public val functionCall: FunctionCall) : Part
5353

5454
/**
5555
* The result of calling a function as requested by the model.
5656
*
5757
* @param functionResponse The information to send back to the model as the result of a functions
5858
* call.
5959
*/
60-
class FunctionResponsePart(public val functionResponse: FunctionResponse) : Part
60+
public class FunctionResponsePart(public val functionResponse: FunctionResponse) : Part
6161

6262
/**
6363
* The data necessary to invoke function [name] using the arguments [args].
6464
*
6565
* @param name the name of the function to call
6666
* @param args the function parameters and values as a [Map]
6767
*/
68-
6968
public class FunctionCall(public val name: String, public val args: Map<String, JsonElement>)
7069

7170
/**

0 commit comments

Comments
 (0)