File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
firebase-vertexai/src/main/kotlin/com/google/firebase/vertexai/type Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -49,23 +49,22 @@ public class InlineDataPart(public val mimeType: String, public val inlineData:
49
49
*
50
50
* @param functionCall The information provided by the model to call a function.
51
51
*/
52
- class FunctionCallPart (public val functionCall : FunctionCall ) : Part
52
+ public class FunctionCallPart (public val functionCall : FunctionCall ) : Part
53
53
54
54
/* *
55
55
* The result of calling a function as requested by the model.
56
56
*
57
57
* @param functionResponse The information to send back to the model as the result of a functions
58
58
* call.
59
59
*/
60
- class FunctionResponsePart (public val functionResponse : FunctionResponse ) : Part
60
+ public class FunctionResponsePart (public val functionResponse : FunctionResponse ) : Part
61
61
62
62
/* *
63
63
* The data necessary to invoke function [name] using the arguments [args].
64
64
*
65
65
* @param name the name of the function to call
66
66
* @param args the function parameters and values as a [Map]
67
67
*/
68
-
69
68
public class FunctionCall (public val name : String , public val args : Map <String , JsonElement >)
70
69
71
70
/* *
You can’t perform that action at this time.
0 commit comments