Oracle AI Vector Search is designed for Artificial Intelligence (AI) workloads that allows you to query data based on semantics, rather than keywords.
One of the biggest benefits of Oracle AI Vector Search is that semantic search on unstructured data can be combined with relational search on business data in one single system.
This is not only powerful but also significantly more effective because you don’t need to add a specialized vector database, eliminating the pain of data fragmentation between multiple systems.In addition, your vectors can benefit from all of Oracle Database’s most powerful features, like the following:
The guide demonstrates how to use Summary Capabilities within Oracle AI Vector Search to generate summary for your documents using OracleSummary.If you are just starting with Oracle Database, consider exploring the free Oracle 23 AI which provides a great introduction to setting up your database environment. While working with the database, it is often advisable to avoid using the system user by default; instead, you can create your own user for enhanced security and customization. For detailed steps on user creation, refer to our end-to-end guide which also shows how to set up a user in Oracle. Additionally, understanding user privileges is crucial for managing database security effectively. You can learn more about this topic in the official Oracle guide on administering user accounts and security.
The following sample code will show how to connect to Oracle Database. By default, python-oracledb runs in a ‘Thin’ mode which connects directly to Oracle Database. This mode does not need Oracle Client libraries. However, some additional functionality is available when python-oracledb uses them. Python-oracledb is said to be in ‘Thick’ mode when Oracle Client libraries are used. Both modes have comprehensive functionality supporting the Python Database API v2.0 Specification. See the following guide that talks about features supported in each mode. You might want to switch to thick-mode if you are unable to use thin-mode.
Copy
Ask AI
import sysimport oracledb# please update with your username, password, hostname and service_nameusername = "<username>"password = "<password>"dsn = "<hostname>/<service_name>"try: conn = oracledb.connect(user=username, password=password, dsn=dsn) print("Connection successful!")except Exception as e: print("Connection failed!") sys.exit(1)
The Oracle AI Vector Search Langchain library offers a suite of APIs designed for document summarization. It supports multiple summarization providers such as Database, OCIGENAI, HuggingFace, among others, allowing users to select the provider that best meets their needs. To utilize these capabilities, users must configure the summary parameters as specified. For detailed information on these parameters, please consult the Oracle AI Vector Search Guide book.Note: The users may need to set proxy if they want to use some 3rd party summary generation providers other than Oracle’s in-house and default provider: ‘database’. If you don’t have proxy, please remove the proxy parameter when you instantiate the OracleSummary.
Copy
Ask AI
# proxy to be used when we instantiate summary and embedder objectproxy = "<proxy>"
The following sample code will show how to generate summary:
Copy
Ask AI
from langchain_community.utilities.oracleai import OracleSummaryfrom langchain_core.documents import Document"""# using 'ocigenai' providersummary_params = { "provider": "ocigenai", "credential_name": "OCI_CRED", "url": "https://inference.generativeai.us-chicago-1.oci.oraclecloud.com/20231130/actions/summarizeText", "model": "cohere.command",}# using 'huggingface' providersummary_params = { "provider": "huggingface", "credential_name": "HF_CRED", "url": "https://api-inference.huggingface.co/models/", "model": "facebook/bart-large-cnn", "wait_for_model": "true"}"""# using 'database' providersummary_params = { "provider": "database", "glevel": "S", "numParagraphs": 1, "language": "english",}# get the summary instance# Remove proxy if not requiredsumm = OracleSummary(conn=conn, params=summary_params, proxy=proxy)summary = summ.get_summary( "In the heart of the forest, " + "a lone fox ventured out at dusk, seeking a lost treasure. " + "With each step, memories flooded back, guiding its path. " + "As the moon rose high, illuminating the night, the fox unearthed " + "not gold, but a forgotten friendship, worth more than any riches.")print(f"Summary generated by OracleSummary: {summary}")