ProvisionedCapacityConfig¶
-
class
oci.generative_ai_agent.models.ProvisionedCapacityConfig(**kwargs)¶ Bases:
objectThe configuration includes the provisioned capacity id and component runtime (tool versions, and other relevant information).
Methods
__init__(**kwargs)Initializes a new ProvisionedCapacityConfig object with values from keyword arguments. Attributes
platform_runtime_configGets the platform_runtime_config of this ProvisionedCapacityConfig. provisioned_capacity_id[Required] Gets the provisioned_capacity_id of this ProvisionedCapacityConfig. tool_runtime_configsGets the tool_runtime_configs of this ProvisionedCapacityConfig. -
__init__(**kwargs)¶ Initializes a new ProvisionedCapacityConfig object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - provisioned_capacity_id (str) – The value to assign to the provisioned_capacity_id property of this ProvisionedCapacityConfig.
- platform_runtime_config (oci.generative_ai_agent.models.PlatformRuntimeConfig) – The value to assign to the platform_runtime_config property of this ProvisionedCapacityConfig.
- tool_runtime_configs (list[oci.generative_ai_agent.models.ToolRuntimeConfig]) – The value to assign to the tool_runtime_configs property of this ProvisionedCapacityConfig.
-
platform_runtime_config¶ Gets the platform_runtime_config of this ProvisionedCapacityConfig.
Returns: The platform_runtime_config of this ProvisionedCapacityConfig. Return type: oci.generative_ai_agent.models.PlatformRuntimeConfig
-
provisioned_capacity_id¶ [Required] Gets the provisioned_capacity_id of this ProvisionedCapacityConfig. An OCID that uniquely identifies an Provisioned Capacity.
Returns: The provisioned_capacity_id of this ProvisionedCapacityConfig. Return type: str
-
tool_runtime_configs¶ Gets the tool_runtime_configs of this ProvisionedCapacityConfig. RAG and SQL will be tools.
Returns: The tool_runtime_configs of this ProvisionedCapacityConfig. Return type: list[oci.generative_ai_agent.models.ToolRuntimeConfig]
-