Generative AI Common Types

DBMS_CLOUD_OCI_GENERATIVE_AI_VARCHAR2_TBL Type

Nested table type of varchar2(32767).

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_varchar2_tbl FORCE IS TABLE OF (varchar2(32767)) NOT PERSISTABLE;

DBMS_CLOUD_OCI_GENERATIVE_AI_CHANGE_DEDICATED_AI_CLUSTER_COMPARTMENT_DETAILS_T Type

The details to move a dedicated AI cluster to another compartment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_change_dedicated_ai_cluster_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_change_dedicated_ai_cluster_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_change_dedicated_ai_cluster_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment to move the dedicated AI cluster to.

DBMS_CLOUD_OCI_GENERATIVE_AI_CHANGE_ENDPOINT_COMPARTMENT_DETAILS_T Type

The details to move an endpoint to another compartment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_change_endpoint_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_change_endpoint_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_change_endpoint_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment to move the endpoint to.

DBMS_CLOUD_OCI_GENERATIVE_AI_CHANGE_MODEL_COMPARTMENT_DETAILS_T Type

The details to move a custom model to another compartment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_change_model_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_change_model_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_change_model_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The compartment OCID to create the model in.

DBMS_CLOUD_OCI_GENERATIVE_AI_CONTENT_MODERATION_CONFIG_T Type

The configuration details, whether to add the content moderation feature to the model. Content moderation removes toxic and biased content from responses. It's recommended to use content moderation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_content_moderation_config_t FORCE AUTHID CURRENT_USER IS OBJECT (
  is_enabled number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_content_moderation_config_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_content_moderation_config_t (
    is_enabled number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

is_enabled

(required) Whether to enable the content moderation feature.

DBMS_CLOUD_OCI_GENERATIVE_AI_CREATE_DEDICATED_AI_CLUSTER_DETAILS_T Type

The data to create a dedicated AI cluster.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_create_dedicated_ai_cluster_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  l_type varchar2(32767),
  compartment_id varchar2(32767),
  unit_count number,
  unit_shape varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_create_dedicated_ai_cluster_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_create_dedicated_ai_cluster_details_t (
    display_name varchar2,
    description varchar2,
    l_type varchar2,
    compartment_id varchar2,
    unit_count number,
    unit_shape varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable.

description

(optional) An optional description of the dedicated AI cluster.

l_type

(required) The dedicated AI cluster type indicating whether this is a fine-tuning/training processor or hosting/inference processor. Allowed values are: - HOSTING - FINE_TUNING

compartment_id

(required) The compartment OCID to create the dedicated AI cluster in.

unit_count

(required) The number of dedicated units in this AI cluster.

unit_shape

(required) The shape of dedicated unit in this AI cluster. The underlying hardware configuration is hidden from customers. Allowed values are: - LARGE_COHERE - SMALL_COHERE - EMBED_COHERE - LLAMA2_70

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_GENERATIVE_AI_CREATE_ENDPOINT_DETAILS_T Type

The data to create an endpoint.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_create_endpoint_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  compartment_id varchar2(32767),
  model_id varchar2(32767),
  dedicated_ai_cluster_id varchar2(32767),
  content_moderation_config dbms_cloud_oci_generative_ai_content_moderation_config_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_create_endpoint_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_create_endpoint_details_t (
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    model_id varchar2,
    dedicated_ai_cluster_id varchar2,
    content_moderation_config dbms_cloud_oci_generative_ai_content_moderation_config_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable.

description

(optional) An optional description of the endpoint.

compartment_id

(required) The compartment OCID to create the endpoint in.

model_id

(required) The ID of the model that's used to create this endpoint.

dedicated_ai_cluster_id

(required) The OCID of the dedicated AI cluster on which a model will be deployed to.

content_moderation_config

(optional)

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_GENERATIVE_AI_DATASET_T Type

The dataset used to fine-tune the model. Only one dataset is allowed per custom model, which is split 90-10 for training and validating. You must provide the dataset in a JSON Lines (JSONL) file. Each line in the JSONL file must have the format: `{\"prompt\": \"<first prompt>\", \"completion\": \"<expected completion given first prompt>\"}`

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_dataset_t FORCE AUTHID CURRENT_USER IS OBJECT (
  dataset_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_dataset_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_dataset_t (
    dataset_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

dataset_type

(required) The type of the data asset.

Allowed values are: 'OBJECT_STORAGE'

DBMS_CLOUD_OCI_GENERATIVE_AI_TRAINING_CONFIG_T Type

The fine-tuning method and hyperparameters used for fine-tuning a custom model.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_training_config_t FORCE AUTHID CURRENT_USER IS OBJECT (
  training_config_type varchar2(32767),
  total_training_epochs number,
  learning_rate number,
  training_batch_size number,
  early_stopping_patience number,
  early_stopping_threshold number,
  log_model_metrics_interval_in_steps number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_training_config_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_training_config_t (
    training_config_type varchar2,
    total_training_epochs number,
    learning_rate number,
    training_batch_size number,
    early_stopping_patience number,
    early_stopping_threshold number,
    log_model_metrics_interval_in_steps number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

training_config_type

(required) The fine-tuning method for training a custom model.

Allowed values are: 'TFEW_TRAINING_CONFIG', 'VANILLA_TRAINING_CONFIG'

total_training_epochs

(optional) The maximum number of training epochs to run for.

learning_rate

(optional) The initial learning rate to be used during training

training_batch_size

(optional) The batch size used during training.

early_stopping_patience

(optional) Stop training if the loss metric does not improve beyond 'early_stopping_threshold' for this many times of evaluation.

early_stopping_threshold

(optional) How much the loss must improve to prevent early stopping.

log_model_metrics_interval_in_steps

(optional) Determines how frequently to log model metrics. Every step is logged for the first 20 steps and then follows this parameter for log frequency. Set to 0 to disable logging the model metrics.

DBMS_CLOUD_OCI_GENERATIVE_AI_FINE_TUNE_DETAILS_T Type

Details about fine-tuning a custom model.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_fine_tune_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  training_dataset dbms_cloud_oci_generative_ai_dataset_t,
  dedicated_ai_cluster_id varchar2(32767),
  training_config dbms_cloud_oci_generative_ai_training_config_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_fine_tune_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_fine_tune_details_t (
    training_dataset dbms_cloud_oci_generative_ai_dataset_t,
    dedicated_ai_cluster_id varchar2,
    training_config dbms_cloud_oci_generative_ai_training_config_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

training_dataset

(required)

dedicated_ai_cluster_id

(required) The OCID of the dedicated AI cluster this fine-tuning runs on.

training_config

(optional)

DBMS_CLOUD_OCI_GENERATIVE_AI_CREATE_MODEL_DETAILS_T Type

The data to create a custom model.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_create_model_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  vendor varchar2(32767),
  version varchar2(32767),
  description varchar2(32767),
  base_model_id varchar2(32767),
  fine_tune_details dbms_cloud_oci_generative_ai_fine_tune_details_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_create_model_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_create_model_details_t (
    display_name varchar2,
    compartment_id varchar2,
    vendor varchar2,
    version varchar2,
    description varchar2,
    base_model_id varchar2,
    fine_tune_details dbms_cloud_oci_generative_ai_fine_tune_details_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) A user-friendly name.

compartment_id

(required) The compartment OCID for fine-tuned models. For pretrained models, this value is null.

vendor

(optional) The provider of the model.

version

(optional) The version of the model.

description

(optional) An optional description of the model.

base_model_id

(required) The OCID of the base model that's used for fine-tuning.

fine_tune_details

(required)

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_GENERATIVE_AI_DEDICATED_AI_CLUSTER_CAPACITY_T Type

The total capacity for a dedicated AI cluster.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_dedicated_ai_cluster_capacity_t FORCE AUTHID CURRENT_USER IS OBJECT (
  capacity_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_dedicated_ai_cluster_capacity_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_dedicated_ai_cluster_capacity_t (
    capacity_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

capacity_type

(required) The type of the dedicated AI cluster capacity.

Allowed values are: 'HOSTING_CAPACITY'

DBMS_CLOUD_OCI_GENERATIVE_AI_DEDICATED_AI_CLUSTER_T Type

Dedicated AI clusters are compute resources that you can use for fine-tuning custom models or for hosting endpoints for custom models. The clusters are dedicated to your models and not shared with users in other tenancies. To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, talk to an administrator who gives OCI resource access to users. See Getting Started with Policies and Getting Access to Generative AI Resouces.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_dedicated_ai_cluster_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  l_type varchar2(32767),
  compartment_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  unit_count number,
  unit_shape varchar2(32767),
  l_capacity dbms_cloud_oci_generative_ai_dedicated_ai_cluster_capacity_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_dedicated_ai_cluster_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_dedicated_ai_cluster_t (
    id varchar2,
    display_name varchar2,
    description varchar2,
    l_type varchar2,
    compartment_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    unit_count number,
    unit_shape varchar2,
    l_capacity dbms_cloud_oci_generative_ai_dedicated_ai_cluster_capacity_t,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the dedicated AI cluster.

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable.

description

(optional) An optional description of the dedicated AI cluster.

l_type

(required) The dedicated AI cluster type indicating whether this is a fine-tuning/training processor or hosting/inference processor.

Allowed values are: 'HOSTING', 'FINE_TUNING'

compartment_id

(required) The compartment OCID to create the dedicated AI cluster in.

time_created

(required) The date and time the dedicated AI cluster was created, in the format defined by RFC 3339

time_updated

(optional) The date and time the dedicated AI cluster was updated, in the format defined by RFC 3339

lifecycle_state

(required) The current state of the dedicated AI cluster.

Allowed values are: 'CREATING', 'ACTIVE', 'UPDATING', 'DELETING', 'DELETED', 'FAILED', 'NEEDS_ATTENTION'

lifecycle_details

(optional) A message describing the current state with detail that can provide actionable information.

unit_count

(required) The number of dedicated units in this AI cluster.

unit_shape

(required) The shape of dedicated unit in this AI cluster. The underlying hardware configuration is hidden from customers.

Allowed values are: 'LARGE_COHERE', 'SMALL_COHERE', 'EMBED_COHERE', 'LLAMA2_70'

l_capacity

(optional)

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_GENERATIVE_AI_DEDICATED_AI_CLUSTER_SUMMARY_T Type

Summary information about a dedicated AI cluster.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_dedicated_ai_cluster_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  l_type varchar2(32767),
  compartment_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  unit_count number,
  unit_shape varchar2(32767),
  l_capacity dbms_cloud_oci_generative_ai_dedicated_ai_cluster_capacity_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_dedicated_ai_cluster_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_dedicated_ai_cluster_summary_t (
    id varchar2,
    display_name varchar2,
    description varchar2,
    l_type varchar2,
    compartment_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    unit_count number,
    unit_shape varchar2,
    l_capacity dbms_cloud_oci_generative_ai_dedicated_ai_cluster_capacity_t,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the dedicated AI cluster.

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable.

description

(optional) An optional description of the dedicated AI cluster.

l_type

(required) The dedicated AI cluster type indicating whether this is a fine-tuning/training processor or hosting/inference processor. Allowed values are: - HOSTING - FINE_TUNING

compartment_id

(required) The compartment OCID to create the dedicated AI cluster in.

time_created

(required) The date and time the dedicated AI cluster was created, in the format defined by RFC 3339.

time_updated

(optional) The date and time the dedicated AI cluster was updated, in the format defined by RFC 3339.

lifecycle_state

(required) The current state of the dedicated AI cluster. Allowed values are: - CREATING - ACTIVE - UPDATING - DELETING - DELETED - FAILED - NEEDS_ATTENTION

lifecycle_details

(optional) A message describing the current state of the dedicated AI cluster in more detail that can provide actionable information.

unit_count

(required) The number of dedicated units in this AI cluster.

unit_shape

(required) The shape of dedicated unit in this AI cluster. The underlying hardware configuration is hidden from customers.

l_capacity

(optional)

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_GENERATIVE_AI_DEDICATED_AI_CLUSTER_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_generative_ai_dedicated_ai_cluster_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_dedicated_ai_cluster_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_generative_ai_dedicated_ai_cluster_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_GENERATIVE_AI_DEDICATED_AI_CLUSTER_COLLECTION_T Type

Results of a dedicate AI cluster search. Contains DedicatedAiClusterSummary items and other information such as metadata.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_dedicated_ai_cluster_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_generative_ai_dedicated_ai_cluster_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_dedicated_ai_cluster_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_dedicated_ai_cluster_collection_t (
    items dbms_cloud_oci_generative_ai_dedicated_ai_cluster_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) List of dedicated AI clusters.

DBMS_CLOUD_OCI_GENERATIVE_AI_DEDICATED_AI_CLUSTER_HOSTING_CAPACITY_T Type

The capacity of a hosting type dedicated AI cluster.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_dedicated_ai_cluster_hosting_capacity_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_generative_ai_dedicated_ai_cluster_capacity_t (
  total_endpoint_capacity number,
  used_endpoint_capacity number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_dedicated_ai_cluster_hosting_capacity_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_dedicated_ai_cluster_hosting_capacity_t (
    capacity_type varchar2,
    total_endpoint_capacity number,
    used_endpoint_capacity number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_generative_ai_dedicated_ai_cluster_hosting_capacity_t is a subtype of the dbms_cloud_oci_generative_ai_dedicated_ai_cluster_capacity_t type.

Fields

Field Description

total_endpoint_capacity

(optional) The total number of endpoints that can be hosted on this dedicated AI cluster.

used_endpoint_capacity

(optional) The number of endpoints hosted on this dedicated AI cluster.

DBMS_CLOUD_OCI_GENERATIVE_AI_ENDPOINT_T Type

To host a custom model for inference, create an endpoint for that model on a dedicated AI cluster of type HOSTING. To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, talk to an administrator who gives OCI resource access to users. See Getting Started with Policies and Getting Access to Generative AI Resouces.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_endpoint_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  model_id varchar2(32767),
  compartment_id varchar2(32767),
  dedicated_ai_cluster_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  content_moderation_config dbms_cloud_oci_generative_ai_content_moderation_config_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_endpoint_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_endpoint_t (
    id varchar2,
    display_name varchar2,
    description varchar2,
    model_id varchar2,
    compartment_id varchar2,
    dedicated_ai_cluster_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    content_moderation_config dbms_cloud_oci_generative_ai_content_moderation_config_t,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) An OCID that uniquely identifies this endpoint resource.

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable.

description

(optional) An optional description of the endpoint.

model_id

(required) The OCID of the model that's used to create this endpoint.

compartment_id

(required) The compartment OCID to create the endpoint in.

dedicated_ai_cluster_id

(required) The OCID of the dedicated AI cluster on which the model will be deployed to.

time_created

(required) The date and time that the endpoint was created in the format of an RFC3339 datetime string.

time_updated

(optional) The date and time that the endpoint was updated in the format of an RFC3339 datetime string.

lifecycle_state

(required) The current state of the endpoint.

Allowed values are: 'ACTIVE', 'CREATING', 'UPDATING', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(optional) A message describing the current state of the endpoint in more detail that can provide actionable information.

content_moderation_config

(optional)

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_GENERATIVE_AI_ENDPOINT_SUMMARY_T Type

Summary information for an endpoint resource.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_endpoint_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  model_id varchar2(32767),
  compartment_id varchar2(32767),
  dedicated_ai_cluster_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  content_moderation_config dbms_cloud_oci_generative_ai_content_moderation_config_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_endpoint_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_endpoint_summary_t (
    id varchar2,
    display_name varchar2,
    description varchar2,
    model_id varchar2,
    compartment_id varchar2,
    dedicated_ai_cluster_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    content_moderation_config dbms_cloud_oci_generative_ai_content_moderation_config_t,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) An OCID that uniquely identifies this endpoint resource.

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable.

description

(optional) An optional description of the endpoint.

model_id

(required) The OCID of the model that's used to create this endpoint.

compartment_id

(required) The compartment OCID to create the endpoint in.

dedicated_ai_cluster_id

(required) The OCID of the dedicated AI cluster on which a model will be deployed to.

time_created

(required) The date and time that the endpoint was created in the format of an RFC3339 datetime string.

time_updated

(optional) The date and time the endpoint was updated in the format of n RFC3339 datetime string.

lifecycle_state

(required) The current state of the endpoint. Allowed values are: - ACTIVE - CREATING - UPDATING - DELETING - DELETED - FAILED

lifecycle_details

(optional) A message describing the current state with detail that can provide actionable information.

content_moderation_config

(optional)

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_GENERATIVE_AI_ENDPOINT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_generative_ai_endpoint_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_endpoint_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_generative_ai_endpoint_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_GENERATIVE_AI_ENDPOINT_COLLECTION_T Type

Results of an endpoint search. Contains EndpointSummary items and other information such as metadata.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_endpoint_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_generative_ai_endpoint_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_endpoint_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_endpoint_collection_t (
    items dbms_cloud_oci_generative_ai_endpoint_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) List of endpoints.

DBMS_CLOUD_OCI_GENERATIVE_AI_ERROR_T Type

Error information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
  code varchar2(32767),
  message varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_error_t (
    code varchar2,
    message varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

code

(required) A short error code that defines the error, meant for programmatic parsing.

message

(required) A human-readable error message.

DBMS_CLOUD_OCI_GENERATIVE_AI_MODEL_METRICS_T Type

Model metrics during the creation of a new model.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_model_metrics_t FORCE AUTHID CURRENT_USER IS OBJECT (
  model_metrics_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_model_metrics_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_model_metrics_t (
    model_metrics_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

model_metrics_type

(required) The type of the model metrics. Each type of model can expect a different set of model metrics.

Allowed values are: 'TEXT_GENERATION_MODEL_METRICS'

DBMS_CLOUD_OCI_GENERATIVE_AI_MODEL_T Type

You can create a custom model by using your dataset to fine-tune an out-of-the-box text generation base model. Have your dataset ready before you create a custom model. See Training Data Requirements. To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, talk to an administrator who gives OCI resource access to users. See Getting Started with Policies and Getting Access to Generative AI Resouces.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_model_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  description varchar2(32767),
  compartment_id varchar2(32767),
  capabilities dbms_cloud_oci_generative_ai_varchar2_tbl,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  vendor varchar2(32767),
  version varchar2(32767),
  display_name varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  base_model_id varchar2(32767),
  l_type varchar2(32767),
  fine_tune_details dbms_cloud_oci_generative_ai_fine_tune_details_t,
  model_metrics dbms_cloud_oci_generative_ai_model_metrics_t,
  is_long_term_supported number,
  time_deprecated timestamp with time zone,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_model_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_model_t (
    id varchar2,
    description varchar2,
    compartment_id varchar2,
    capabilities dbms_cloud_oci_generative_ai_varchar2_tbl,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    vendor varchar2,
    version varchar2,
    display_name varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    base_model_id varchar2,
    l_type varchar2,
    fine_tune_details dbms_cloud_oci_generative_ai_fine_tune_details_t,
    model_metrics dbms_cloud_oci_generative_ai_model_metrics_t,
    is_long_term_supported number,
    time_deprecated timestamp with time zone,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) An ID that uniquely identifies a pretrained or fine-tuned model.

description

(optional) An optional description of the model.

compartment_id

(required) The compartment OCID for fine-tuned models. For pretrained models, this value is null.

capabilities

(required) Describes what this model can be used for.

Allowed values are: 'TEXT_GENERATION', 'TEXT_SUMMARIZATION', 'TEXT_EMBEDDINGS', 'FINE_TUNE'

lifecycle_state

(required) The lifecycle state of the model.

Allowed values are: 'ACTIVE', 'CREATING', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(optional) A message describing the current state of the model in more detail that can provide actionable information.

vendor

(optional) The provider of the base model.

version

(optional) The version of the model.

display_name

(optional) A user-friendly name.

time_created

(required) The date and time that the model was created in the format of an RFC3339 datetime string.

time_updated

(optional) The date and time that the model was updated in the format of an RFC3339 datetime string.

base_model_id

(optional) The OCID of the base model that's used for fine-tuning. For pretrained models, the value is null.

l_type

(required) The model type indicating whether this is a pretrained/base model or a custom/fine-tuned model.

Allowed values are: 'BASE', 'CUSTOM'

fine_tune_details

(optional)

model_metrics

(optional)

is_long_term_supported

(optional) Whether a model is supported long-term. Only applicable to base models.

time_deprecated

(optional) Corresponds to the time when the custom model and its associated foundation model will be deprecated.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_GENERATIVE_AI_MODEL_SUMMARY_T Type

Summary of the model.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_model_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  capabilities dbms_cloud_oci_generative_ai_varchar2_tbl,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  display_name varchar2(32767),
  vendor varchar2(32767),
  version varchar2(32767),
  time_created timestamp with time zone,
  base_model_id varchar2(32767),
  l_type varchar2(32767),
  fine_tune_details dbms_cloud_oci_generative_ai_fine_tune_details_t,
  model_metrics dbms_cloud_oci_generative_ai_model_metrics_t,
  is_long_term_supported number,
  time_deprecated timestamp with time zone,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_model_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_model_summary_t (
    id varchar2,
    compartment_id varchar2,
    capabilities dbms_cloud_oci_generative_ai_varchar2_tbl,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    display_name varchar2,
    vendor varchar2,
    version varchar2,
    time_created timestamp with time zone,
    base_model_id varchar2,
    l_type varchar2,
    fine_tune_details dbms_cloud_oci_generative_ai_fine_tune_details_t,
    model_metrics dbms_cloud_oci_generative_ai_model_metrics_t,
    is_long_term_supported number,
    time_deprecated timestamp with time zone,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) An ID that uniquely identifies a pretrained or a fine-tuned model.

compartment_id

(required) The compartment OCID for fine-tuned models. For pretrained models, this value is null.

capabilities

(required) Describes what this model can be used for.

Allowed values are: 'TEXT_GENERATION', 'TEXT_SUMMARIZATION', 'TEXT_EMBEDDINGS', 'FINE_TUNE'

lifecycle_state

(required) The lifecycle state of the model. Allowed values are: - ACTIVE - CREATING - DELETING - DELETED - FAILED

lifecycle_details

(optional) A message describing the current state of the model with detail that can provide actionable information.

display_name

(optional) A user-friendly name.

vendor

(optional) The provider of the model.

version

(optional) The version of the model.

time_created

(required) The date and time that the model was created in the format of an RFC3339 datetime string.

base_model_id

(optional) The OCID of the base model that's used for fine-tuning. For pretrained models, the value is null.

l_type

(required) The model type indicating whether this is a pretrained/base model or a custom/fine-tuned model. Allowed values are: - BASE - CUSTOM

fine_tune_details

(optional)

model_metrics

(optional)

is_long_term_supported

(optional) Whether a model is supported long-term. Applies only to base models.

time_deprecated

(optional) Corresponds to the time when the custom model and its associated foundation model will be deprecated.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_GENERATIVE_AI_MODEL_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_generative_ai_model_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_model_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_generative_ai_model_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_GENERATIVE_AI_MODEL_COLLECTION_T Type

Results of a model search. Contains ModelSummary items and other information such as metadata.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_model_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_generative_ai_model_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_model_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_model_collection_t (
    items dbms_cloud_oci_generative_ai_model_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) The results of a model search.

DBMS_CLOUD_OCI_GENERATIVE_AI_OBJECT_STORAGE_DATASET_T Type

The dataset is stored in an OCI Object Storage bucket.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_object_storage_dataset_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_generative_ai_dataset_t (
  namespace_name varchar2(32767),
  bucket_name varchar2(32767),
  object_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_object_storage_dataset_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_object_storage_dataset_t (
    dataset_type varchar2,
    namespace_name varchar2,
    bucket_name varchar2,
    object_name varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_generative_ai_object_storage_dataset_t is a subtype of the dbms_cloud_oci_generative_ai_dataset_t type.

Fields

Field Description

namespace_name

(required) The Object Storage namespace.

bucket_name

(required) The Object Storage bucket name.

object_name

(required) The Object Storage object name.

DBMS_CLOUD_OCI_GENERATIVE_AI_T_FEW_TRAINING_CONFIG_T Type

The TFEW training method hyperparameters.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_t_few_training_config_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_generative_ai_training_config_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_t_few_training_config_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_t_few_training_config_t (
    training_config_type varchar2,
    total_training_epochs number,
    learning_rate number,
    training_batch_size number,
    early_stopping_patience number,
    early_stopping_threshold number,
    log_model_metrics_interval_in_steps number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_generative_ai_t_few_training_config_t is a subtype of the dbms_cloud_oci_generative_ai_training_config_t type.

DBMS_CLOUD_OCI_GENERATIVE_AI_TEXT_GENERATION_MODEL_METRICS_T Type

The text generation model metrics of the fine-tuning process.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_text_generation_model_metrics_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_generative_ai_model_metrics_t (
  final_accuracy number,
  final_loss number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_text_generation_model_metrics_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_text_generation_model_metrics_t (
    model_metrics_type varchar2,
    final_accuracy number,
    final_loss number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_generative_ai_text_generation_model_metrics_t is a subtype of the dbms_cloud_oci_generative_ai_model_metrics_t type.

Fields

Field Description

final_accuracy

(optional) Fine-tuned model accuracy.

final_loss

(optional) Fine-tuned model loss.

DBMS_CLOUD_OCI_GENERATIVE_AI_UPDATE_DEDICATED_AI_CLUSTER_DETAILS_T Type

The data to update a dedicated AI cluster.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_update_dedicated_ai_cluster_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  unit_count number,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_update_dedicated_ai_cluster_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_update_dedicated_ai_cluster_details_t (
    display_name varchar2,
    description varchar2,
    unit_count number,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable.

description

(optional) An optional description of the dedicated AI cluster.

unit_count

(optional) The number of dedicated units in this AI cluster.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_GENERATIVE_AI_UPDATE_ENDPOINT_DETAILS_T Type

The data to update an endpoint.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_update_endpoint_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  content_moderation_config dbms_cloud_oci_generative_ai_content_moderation_config_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_update_endpoint_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_update_endpoint_details_t (
    display_name varchar2,
    description varchar2,
    content_moderation_config dbms_cloud_oci_generative_ai_content_moderation_config_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable.

description

(optional) An optional description of the endpoint.

content_moderation_config

(optional)

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_GENERATIVE_AI_UPDATE_MODEL_DETAILS_T Type

The data to update a custom model.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_update_model_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  vendor varchar2(32767),
  version varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_update_model_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_update_model_details_t (
    display_name varchar2,
    description varchar2,
    vendor varchar2,
    version varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) A user-friendly name.

description

(optional) An optional description of the model.

vendor

(optional) The provider of the base model.

version

(optional) The version of the model.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_GENERATIVE_AI_VANILLA_TRAINING_CONFIG_T Type

The Vanilla training method hyperparameters.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_vanilla_training_config_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_generative_ai_training_config_t (
  num_of_last_layers number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_vanilla_training_config_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_vanilla_training_config_t (
    training_config_type varchar2,
    total_training_epochs number,
    learning_rate number,
    training_batch_size number,
    early_stopping_patience number,
    early_stopping_threshold number,
    log_model_metrics_interval_in_steps number,
    num_of_last_layers number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_generative_ai_vanilla_training_config_t is a subtype of the dbms_cloud_oci_generative_ai_training_config_t type.

Fields

Field Description

num_of_last_layers

(optional) The number of last layers to be fine-tuned.

DBMS_CLOUD_OCI_GENERATIVE_AI_WORK_REQUEST_RESOURCE_T Type

The resource created or operated on by a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_work_request_resource_t FORCE AUTHID CURRENT_USER IS OBJECT (
  entity_type varchar2(32767),
  action_type varchar2(32767),
  identifier varchar2(32767),
  entity_uri varchar2(32767),
  metadata json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_work_request_resource_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_work_request_resource_t (
    entity_type varchar2,
    action_type varchar2,
    identifier varchar2,
    entity_uri varchar2,
    metadata json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

entity_type

(required) The resource type that the work request affects.

action_type

(required) The way in which this resource is affected by the operation tracked in the work request. A resource being created, updated, or deleted remains in the IN_PROGRESS state until work is complete for that resource, at which point it transitions to CREATED, UPDATED, or DELETED, respectively.

Allowed values are: 'CREATED', 'UPDATED', 'DELETED', 'IN_PROGRESS', 'RELATED', 'FAILED'

identifier

(required) An OCID or other unique identifier for the resource.

entity_uri

(optional) The URI path that you can use for a GET request to access the resource metadata.

metadata

(optional) Additional information that helps to explain the resource.

DBMS_CLOUD_OCI_GENERATIVE_AI_WORK_REQUEST_RESOURCE_TBL Type

Nested table type of dbms_cloud_oci_generative_ai_work_request_resource_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_work_request_resource_tbl FORCE IS TABLE OF (dbms_cloud_oci_generative_ai_work_request_resource_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_GENERATIVE_AI_WORK_REQUEST_T Type

An asynchronous work request. When you start a long-running operation, the service creates a work request. Work requests help you monitor long-running operations. A work request is an activity log that lets you track each step in the operation's progress. Each work request has an OCID that lets you interact with it programmatically and use it for automation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_work_request_t FORCE AUTHID CURRENT_USER IS OBJECT (
  operation_type varchar2(32767),
  status varchar2(32767),
  id varchar2(32767),
  compartment_id varchar2(32767),
  resources dbms_cloud_oci_generative_ai_work_request_resource_tbl,
  percent_complete number,
  time_accepted timestamp with time zone,
  time_started timestamp with time zone,
  time_finished timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_work_request_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_work_request_t (
    operation_type varchar2,
    status varchar2,
    id varchar2,
    compartment_id varchar2,
    resources dbms_cloud_oci_generative_ai_work_request_resource_tbl,
    percent_complete number,
    time_accepted timestamp with time zone,
    time_started timestamp with time zone,
    time_finished timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

operation_type

(required) The asynchronous operation tracked by this work request.

Allowed values are: 'CREATE_MODEL', 'DELETE_MODEL', 'MOVE_MODEL', 'CREATE_DEDICATED_AI_CLUSTER', 'DELETE_DEDICATED_AI_CLUSTER', 'UPDATE_DEDICATED_AI_CLUSTER', 'MOVE_DEDICATED_AI_CLUSTER', 'CREATE_ENDPOINT', 'DELETE_ENDPOINT', 'UPDATE_ENDPOINT', 'MOVE_ENDPOINT'

status

(required) The status of the work request.

Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'WAITING', 'FAILED', 'SUCCEEDED', 'CANCELING', 'CANCELED'

id

(required) The OCID of the work request.

compartment_id

(required) The OCID of the compartment that contains the work request.

resources

(required) The resources that are affected by the work request.

percent_complete

(required) Shows the progress of the operation tracked by the work request, as a percentage of the total work that must be performed.

time_accepted

(required) The date and time the work request was created, in the format defined by RFC 3339.

time_started

(optional) The date and time the work request was started, in the format defined by RFC 3339.

time_finished

(optional) The date and time the work request was finished, in the format defined by RFC 3339.

DBMS_CLOUD_OCI_GENERATIVE_AI_WORK_REQUEST_ERROR_T Type

An error encountered while performing an operation that is tracked by this work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_work_request_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
  code varchar2(32767),
  message varchar2(32767),
  l_timestamp timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_work_request_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_work_request_error_t (
    code varchar2,
    message varchar2,
    l_timestamp timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

code

(required) A machine-usable code for the error that occurred. For a list of error codes, see API Errors.

message

(required) A human-readable error message.

l_timestamp

(required) The date and time that the error occurred, in the format defined by RFC 3339.

DBMS_CLOUD_OCI_GENERATIVE_AI_WORK_REQUEST_ERROR_TBL Type

Nested table type of dbms_cloud_oci_generative_ai_work_request_error_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_work_request_error_tbl FORCE IS TABLE OF (dbms_cloud_oci_generative_ai_work_request_error_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_GENERATIVE_AI_WORK_REQUEST_ERROR_COLLECTION_T Type

A list of work request errors. Can contain errors and other information such as metadata.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_work_request_error_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_generative_ai_work_request_error_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_work_request_error_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_work_request_error_collection_t (
    items dbms_cloud_oci_generative_ai_work_request_error_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) A list of work request errors.

DBMS_CLOUD_OCI_GENERATIVE_AI_WORK_REQUEST_LOG_ENTRY_T Type

The log message from performing an operation that is tracked by this work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_work_request_log_entry_t FORCE AUTHID CURRENT_USER IS OBJECT (
  message varchar2(32767),
  l_timestamp timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_work_request_log_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_work_request_log_entry_t (
    message varchar2,
    l_timestamp timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

message

(required) A human-readable log message.

l_timestamp

(required) The date and time the log message was written, in the format defined by RFC 3339.

DBMS_CLOUD_OCI_GENERATIVE_AI_WORK_REQUEST_LOG_ENTRY_TBL Type

Nested table type of dbms_cloud_oci_generative_ai_work_request_log_entry_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_work_request_log_entry_tbl FORCE IS TABLE OF (dbms_cloud_oci_generative_ai_work_request_log_entry_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_GENERATIVE_AI_WORK_REQUEST_LOG_ENTRY_COLLECTION_T Type

A list of work request logs. Can contain logs and other information such as metadata.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_work_request_log_entry_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_generative_ai_work_request_log_entry_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_work_request_log_entry_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_work_request_log_entry_collection_t (
    items dbms_cloud_oci_generative_ai_work_request_log_entry_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) A list of work request log entries.

DBMS_CLOUD_OCI_GENERATIVE_AI_WORK_REQUEST_SUMMARY_T Type

Summary information about an asynchronous work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_work_request_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  operation_type varchar2(32767),
  status varchar2(32767),
  id varchar2(32767),
  compartment_id varchar2(32767),
  resources dbms_cloud_oci_generative_ai_work_request_resource_tbl,
  percent_complete number,
  time_accepted timestamp with time zone,
  time_started timestamp with time zone,
  time_finished timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_work_request_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_work_request_summary_t (
    operation_type varchar2,
    status varchar2,
    id varchar2,
    compartment_id varchar2,
    resources dbms_cloud_oci_generative_ai_work_request_resource_tbl,
    percent_complete number,
    time_accepted timestamp with time zone,
    time_started timestamp with time zone,
    time_finished timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

operation_type

(required) The asynchronous operation tracked by this work request.

Allowed values are: 'CREATE_MODEL', 'DELETE_MODEL', 'MOVE_MODEL', 'CREATE_DEDICATED_AI_CLUSTER', 'DELETE_DEDICATED_AI_CLUSTER', 'UPDATE_DEDICATED_AI_CLUSTER', 'MOVE_DEDICATED_AI_CLUSTER', 'CREATE_ENDPOINT', 'DELETE_ENDPOINT', 'UPDATE_ENDPOINT', 'MOVE_ENDPOINT'

status

(required) The status of the work request.

Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'WAITING', 'FAILED', 'SUCCEEDED', 'CANCELING', 'CANCELED'

id

(required) The OCID of the work request.

compartment_id

(required) The OCID of the compartment that contains the work request.

resources

(required) The resources that are affected by this work request.

percent_complete

(required) Shows the progress of the operation tracked by the work request, as a percentage of the total work that must be performed.

time_accepted

(required) The date and time the work request was created, in the format defined by RFC 3339.

time_started

(optional) The date and time the work request was started, in the format defined by RFC 3339.

time_finished

(optional) The date and time the work request was finished, in the format defined by RFC 3339.

DBMS_CLOUD_OCI_GENERATIVE_AI_WORK_REQUEST_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_generative_ai_work_request_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_work_request_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_generative_ai_work_request_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_GENERATIVE_AI_WORK_REQUEST_SUMMARY_COLLECTION_T Type

A list of work requests. Can contain work requests and other information such as metadata.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_generative_ai_work_request_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_generative_ai_work_request_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_work_request_summary_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_generative_ai_work_request_summary_collection_t (
    items dbms_cloud_oci_generative_ai_work_request_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) A list of work requests.

Was this article helpful?