lvector_in

Signature:

CREATE FUNCTION lvector_in(input LVARCHAR) RETURNS lvector_embedding;

Purpose: Converts text representation into the internal lvector_embedding type.

Example:

SELECT lvector_dimensions(lvector_in('[1,2,3,4]')) AS dims
FROM systables
WHERE tabid = 1;
Note: This is user-testable and useful in demos. Tested output: dims = 4.