Package com.openai.models
Interface RunStep.StepDetails.Visitor
-
- All Implemented Interfaces:
public interface RunStep.StepDetails.Visitor<T extends Object>
-
-
Method Summary
Modifier and Type Method Description abstract T
visitMessageCreation(MessageCreationStepDetails messageCreation)
Details of the message creation by the run step. abstract T
visitToolCalls(ToolCallsStepDetails toolCalls)
Details of the tool call. T
unknown(JsonValue json)
-
-
Method Detail
-
visitMessageCreation
abstract T visitMessageCreation(MessageCreationStepDetails messageCreation)
Details of the message creation by the run step.
-
visitToolCalls
abstract T visitToolCalls(ToolCallsStepDetails toolCalls)
Details of the tool call.
-
-
-
-