Package com.openai.models.realtime
Interface RealtimeResponseCreateParams.Tool.Visitor
-
- All Implemented Interfaces:
public interface RealtimeResponseCreateParams.Tool.Visitor<T extends Object>
-
-
Method Summary
Modifier and Type Method Description abstract T
visitRealtimeFunction(RealtimeFunctionTool realtimeFunction)
abstract T
visitRealtimeResponseCreateMcp(RealtimeResponseCreateMcpTool realtimeResponseCreateMcp)
Give the model access to additional tools via remote Model Context Protocol (MCP) servers. T
unknown(JsonValue json)
Maps an unknown variant of Tool to a value of type T. -
-
Method Detail
-
visitRealtimeFunction
abstract T visitRealtimeFunction(RealtimeFunctionTool realtimeFunction)
-
visitRealtimeResponseCreateMcp
abstract T visitRealtimeResponseCreateMcp(RealtimeResponseCreateMcpTool realtimeResponseCreateMcp)
Give the model access to additional tools via remote Model Context Protocol (MCP) servers. Learn more about MCP.
-
unknown
T unknown(JsonValue json)
Maps an unknown variant of Tool to a value of type T.
An instance of Tool can contain an unknown variant if it was deserialized from data that doesn't match any known variant. For example, if the SDK is on an older version than the API, then the API may respond with new variants that the SDK is unaware of.
-
-
-
-