3.9 GET_VECTOR_EMBEDDINGS Function Signature 3

This function receives the embedding from a vector provider for a given term.

Syntax

APEX_AI.GET_VECTOR_EMBEDDINGS (
    p_value                 IN CLOB,
    p_function_name         IN VARCHAR2 )
    RETURN VECTOR;

Parameters

Parameter Description
p_value The textual value for which the embedding is to be determined.
p_function_name The name of a custom PL/SQL function which converts an end user input to an embedding. The specified function needs to take the end user input (p_value) as VARCHAR2 and returns a VECTOR type as a result.

Returns

The embedding for the given value.