Convert Text String to Embedding Using the Local REST Provider Ollama
Perform a text-to-embedding transformation by accessing open embedding models, using the local host REST endpoint provider Ollama.
Ollama is a free and open-source command-line interface tool that allows you to run open embedding models and LLMs locally and privately on your Linux, Windows, or macOS systems. You can access Ollama as a service using SQL and PL/SQL commands.
You can call embedding models, such as all-minilm, mxbai-embed-large, or nomic-embed-text to vectorize your data. Note that you must use the same embedding model on both the data to be indexed and the user's input query. In this example, you can see how to vectorize a user's input query on the fly.
Here, you can call the chainable utility function UTL_TO_EMBEDDING
(note the singular "embedding") from either the DBMS_VECTOR
or the DBMS_VECTOR_CHAIN
package, depending on your use case. This example uses the DBMS_VECTOR.UTL_TO_EMBEDDING
API. UTL_TO_EMBEDDING
directly returns a VECTOR
type (not an array).
WARNING:
Certain features of the database may allow you to access services offered separately by third-parties, for example, through the use of JSON specifications that facilitate your access to REST APIs.
Your use of these features is solely at your own risk, and you are solely responsible for complying with any terms and conditions related to use of any such third-party services. Notwithstanding any other terms and conditions related to the third-party services, your use of such database features constitutes your acceptance of that risk and express exclusion of Oracle's responsibility or liability for any damages resulting from such access.
hello
" to a query vector, by calling a local embedding model using Ollama:
Related Topics
Parent topic: Generate Embeddings