3.8 GET_VECTOR_EMBEDDINGS Function Signature 2

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

Syntax

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

Parameters

Parameter Description
p_value The textual value for which the embedding is to be determined.
p_local_llm_owner The owner name of the local ONNX model to be used to receive the embeddings.
p_local_llm_name The name of the local ONNX model to be used to receive the embeddings.

Returns

The embedding for the given value.