Package com.openai.models.responses
Class ResponseInputItem.FunctionCallOutput.Output
-
- All Implemented Interfaces:
public final class ResponseInputItem.FunctionCallOutput.Output
Text, image, or file output of the function tool call.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interface
ResponseInputItem.FunctionCallOutput.Output.Visitor
An interface that defines how to map each variant of Output to a value of type T.
-
Method Summary
-
-
Method Detail
-
responseFunctionCallOutputItemList
final Optional<List<ResponseFunctionCallOutputItem>> responseFunctionCallOutputItemList()
-
isResponseFunctionCallOutputItemList
final Boolean isResponseFunctionCallOutputItemList()
-
asResponseFunctionCallOutputItemList
final List<ResponseFunctionCallOutputItem> asResponseFunctionCallOutputItemList()
-
accept
final <T extends Any> T accept(ResponseInputItem.FunctionCallOutput.Output.Visitor<T> visitor)
-
validate
final ResponseInputItem.FunctionCallOutput.Output validate()
-
ofString
final static ResponseInputItem.FunctionCallOutput.Output ofString(String string)
A JSON string of the output of the function tool call.
-
ofResponseFunctionCallOutputItemList
final static ResponseInputItem.FunctionCallOutput.Output ofResponseFunctionCallOutputItemList(List<ResponseFunctionCallOutputItem> responseFunctionCallOutputItemList)
-
-
-
-