Package com.openai.models.realtime
Interface RealtimeToolsConfigUnion.Visitor
-
- All Implemented Interfaces:
public interface RealtimeToolsConfigUnion.Visitor<T extends Object>
An interface that defines how to map each variant of RealtimeToolsConfigUnion to a value of type T.
-
-
Method Summary
Modifier and Type Method Description abstract T
visitFunction(RealtimeFunctionTool function)
abstract T
visitMcp(RealtimeToolsConfigUnion.Mcp mcp)
Give the model access to additional tools via remote Model Context Protocol (MCP) servers. T
unknown(JsonValue json)
Maps an unknown variant of RealtimeToolsConfigUnion to a value of type T. -
-
Method Detail
-
visitFunction
abstract T visitFunction(RealtimeFunctionTool function)
-
visitMcp
abstract T visitMcp(RealtimeToolsConfigUnion.Mcp mcp)
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 RealtimeToolsConfigUnion to a value of type T.
An instance of RealtimeToolsConfigUnion 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.
-
-
-
-