Interface RealtimeSessionCreateResponse.Tool.Visitor
-
- All Implemented Interfaces:
public interface RealtimeSessionCreateResponse.Tool.Visitor<T extends Object>
-
-
Method Summary
Modifier and Type Method Description abstract T
visitModels(Models models)
abstract T
visitMcp(RealtimeSessionCreateResponse.Tool.McpTool mcp)
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
-
visitModels
abstract T visitModels(Models models)
-
visitMcp
abstract T visitMcp(RealtimeSessionCreateResponse.Tool.McpTool 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 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.
-
-
-
-