DBMS_CLOUD_OCI_GAI_GENERATIVE_AI_INFERENCE_EMBED_TEXT_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the embed_text request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_gai_generative_ai_inference_embed_text_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_generative_ai_inference_embed_text_result_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of embed_text
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_GAI_GENERATIVE_AI_INFERENCE_GENERATE_TEXT_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the generate_text request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_gai_generative_ai_inference_generate_text_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_generative_ai_inference_generate_text_result_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of generate_text
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_GAI_GENERATIVE_AI_INFERENCE_SUMMARIZE_TEXT_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the summarize_text request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_gai_generative_ai_inference_summarize_text_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_generative_ai_inference_summarize_text_result_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;