I'm running the 26ai database in Docker and trying to create an APEX application to search the ticketing system in the database. I was able to load the ALL_MINILM_L12_V2 model into the database. However when I test the model I got the feature not supported error. When I search for some answers on the internet, it says the vector_embedding IS indeed supported. This is the test sql I ran. Any help would be greatly appreciated!
SELECT VECTOR_EMBEDDING(ALL_MINILM_L12_V2 USING 'hello world' AS data) AS qv
FROM dual;