Package com.openai.models
Class FunctionToolCallDelta.Function
-
- All Implemented Interfaces:
public final class FunctionToolCallDelta.Function
The definition of the function that was called.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
FunctionToolCallDelta.Function.Builder
-
Method Summary
Modifier and Type Method Description final Optional<String>
arguments()
The arguments passed to the function. final Optional<String>
name()
The name of the function. final Optional<String>
output()
The output of the function. final JsonField<String>
_arguments()
The arguments passed to the function. final JsonField<String>
_name()
The name of the function. final JsonField<String>
_output()
The output of the function. final Map<String, JsonValue>
_additionalProperties()
final FunctionToolCallDelta.Function
validate()
final FunctionToolCallDelta.Function.Builder
toBuilder()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static FunctionToolCallDelta.Function.Builder
builder()
-
-
Method Detail
-
output
final Optional<String> output()
The output of the function. This will be
null
if the outputs have not been submitted yet.
-
_arguments
final JsonField<String> _arguments()
The arguments passed to the function.
-
_output
final JsonField<String> _output()
The output of the function. This will be
null
if the outputs have not been submitted yet.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
validate
final FunctionToolCallDelta.Function validate()
-
toBuilder
final FunctionToolCallDelta.Function.Builder toBuilder()
-
builder
final static FunctionToolCallDelta.Function.Builder builder()
-
-
-
-