Vector Generation Examples
Run these end-to-end examples to see how you can generate vector embeddings, both within and outside the database.
- Generate Embeddings
In these examples, you can see how to use theVECTOR_EMBEDDING
SQL function or theUTL_TO_EMBEDDING
PL/SQL function to generate a vector embedding from input text strings and images. - Perform Chunking With Embedding
In these examples, you can see how to explore theVECTOR_CHUNKS
SQL function along with chainable utility PL/SQL functions to split large textual extracts and documents into chunks and then represent each chunk as a vector embedding. - Configure Chunking Parameters
Oracle AI Vector Search provides many parameters for chunking text data, such asSPLIT [BY]
,OVERLAP
, orNORMALIZE
. In these examples, you can see how to configure these parameters to define your own chunking specifications and strategies, so that you can create meaningful chunks.
Parent topic: Generate Vector Embeddings