Package com.openai.models
Interface ToolCallDelta.Visitor
-
- All Implemented Interfaces:
public interface ToolCallDelta.Visitor<T extends Object>
-
-
Method Summary
Modifier and Type Method Description abstract T
visitCodeInterpreterToolCallDelta(CodeInterpreterToolCallDelta codeInterpreterToolCallDelta)
Details of the Code Interpreter tool call the run step was involved in. abstract T
visitFileSearchToolCallDelta(FileSearchToolCallDelta fileSearchToolCallDelta)
abstract T
visitFunctionToolCallDelta(FunctionToolCallDelta functionToolCallDelta)
T
unknown(JsonValue json)
-
-
Method Detail
-
visitCodeInterpreterToolCallDelta
abstract T visitCodeInterpreterToolCallDelta(CodeInterpreterToolCallDelta codeInterpreterToolCallDelta)
Details of the Code Interpreter tool call the run step was involved in.
-
visitFileSearchToolCallDelta
abstract T visitFileSearchToolCallDelta(FileSearchToolCallDelta fileSearchToolCallDelta)
-
visitFunctionToolCallDelta
abstract T visitFunctionToolCallDelta(FunctionToolCallDelta functionToolCallDelta)
-
-
-
-