3.2 データ型
APEX_AIパッケージでは、次のデータ型が使用されます。
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;
親トピック: APEX_AI
APEX_AIパッケージでは、次のデータ型が使用されます。
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;
親トピック: APEX_AI