3.2 Data Types

The APEX_AI package uses the following data types.

subtype t_chat_role is varchar2(30);

type t_chat_message is record (
    chat_role   t_chat_role,
    message     clob );

type t_chat_messages is table of t_chat_message index by pls_integer;