ToolConfig

class oci.generative_ai_agent.models.ToolConfig(**kwargs)

Bases: object

The configuration and type of Tool.

Attributes

TOOL_CONFIG_TYPE_FUNCTION_CALLING_TOOL_CONFIG A constant which can be used with the tool_config_type property of a ToolConfig.
TOOL_CONFIG_TYPE_HTTP_ENDPOINT_TOOL_CONFIG A constant which can be used with the tool_config_type property of a ToolConfig.
TOOL_CONFIG_TYPE_RAG_TOOL_CONFIG A constant which can be used with the tool_config_type property of a ToolConfig.
TOOL_CONFIG_TYPE_SQL_TOOL_CONFIG A constant which can be used with the tool_config_type property of a ToolConfig.
tool_config_type [Required] Gets the tool_config_type of this ToolConfig.

Methods

__init__(**kwargs) Initializes a new ToolConfig object with values from keyword arguments.
get_subtype(object_dictionary) Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
TOOL_CONFIG_TYPE_FUNCTION_CALLING_TOOL_CONFIG = 'FUNCTION_CALLING_TOOL_CONFIG'

A constant which can be used with the tool_config_type property of a ToolConfig. This constant has a value of “FUNCTION_CALLING_TOOL_CONFIG”

TOOL_CONFIG_TYPE_HTTP_ENDPOINT_TOOL_CONFIG = 'HTTP_ENDPOINT_TOOL_CONFIG'

A constant which can be used with the tool_config_type property of a ToolConfig. This constant has a value of “HTTP_ENDPOINT_TOOL_CONFIG”

TOOL_CONFIG_TYPE_RAG_TOOL_CONFIG = 'RAG_TOOL_CONFIG'

A constant which can be used with the tool_config_type property of a ToolConfig. This constant has a value of “RAG_TOOL_CONFIG”

TOOL_CONFIG_TYPE_SQL_TOOL_CONFIG = 'SQL_TOOL_CONFIG'

A constant which can be used with the tool_config_type property of a ToolConfig. This constant has a value of “SQL_TOOL_CONFIG”

__init__(**kwargs)

Initializes a new ToolConfig object with values from keyword arguments. This class has the following subclasses and if you are using this class as input to a service operations then you should favor using a subclass over the base class:

The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:tool_config_type (str) – The value to assign to the tool_config_type property of this ToolConfig. Allowed values for this property are: “SQL_TOOL_CONFIG”, “RAG_TOOL_CONFIG”, “FUNCTION_CALLING_TOOL_CONFIG”, “HTTP_ENDPOINT_TOOL_CONFIG”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
static get_subtype(object_dictionary)

Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.

tool_config_type

[Required] Gets the tool_config_type of this ToolConfig. The type of the Tool config. The allowed values are: - SQL_TOOL_CONFIG: The config for sql Tool. - RAG_TOOL_CONFIG: The config for rag Tool. - FUNCTION_CALLING_TOOL_CONFIG: The config for Function calling Tool. - HTTP_ENDPOINT_TOOL_CONFIG: The config for HTTP endpoint Tool.

Allowed values for this property are: “SQL_TOOL_CONFIG”, “RAG_TOOL_CONFIG”, “FUNCTION_CALLING_TOOL_CONFIG”, “HTTP_ENDPOINT_TOOL_CONFIG”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.

Returns:The tool_config_type of this ToolConfig.
Return type:str