You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SELECTd.id id,
row_number() over (partition by d.idorder byd.id) chunk_id,
vc.chunk_offset chunk_offset,
vc.chunk_length chunk_length,
vc.chunk_text chunk,
vector_embedding(doc_model using vc.chunk_textas data) vector
FROM documentation_tab d,
vector_chunks(d.text by words max 100 overlap 10 split RECURSIVELY) vc;
it produces a parser error due to the vector_chunks function which uses non-standard parameters.
The text was updated successfully, but these errors were encountered:
The following statement is based on an example from https://docs.oracle.com/en/database/oracle/oracle-database/23/vecse/generate-and-use-embeddings-end-end-search.html:
it produces a parser error due to the vector_chunks function which uses non-standard parameters.
The text was updated successfully, but these errors were encountered: