Package com.openai.models
Interface ToolCall.Visitor
-
- All Implemented Interfaces:
public interface ToolCall.Visitor<T extends Object>
-
-
Method Summary
Modifier and Type Method Description abstract T
visitCodeInterpreterToolCall(CodeInterpreterToolCall codeInterpreterToolCall)
Details of the Code Interpreter tool call the run step was involved in. abstract T
visitFileSearchToolCall(FileSearchToolCall fileSearchToolCall)
abstract T
visitFunctionToolCall(FunctionToolCall functionToolCall)
T
unknown(JsonValue json)
-
-
Method Detail
-
visitCodeInterpreterToolCall
abstract T visitCodeInterpreterToolCall(CodeInterpreterToolCall codeInterpreterToolCall)
Details of the Code Interpreter tool call the run step was involved in.
-
visitFileSearchToolCall
abstract T visitFileSearchToolCall(FileSearchToolCall fileSearchToolCall)
-
visitFunctionToolCall
abstract T visitFunctionToolCall(FunctionToolCall functionToolCall)
-
-
-
-