Skip to content

Commit 9388668

Browse files
authored
Merge pull request #765 from engchina/support-oracle-ai-vector
Support oracle database as VectorStore - Fix:#764
2 parents 184dc58 + c977035 commit 9388668

File tree

4 files changed

+588
-0
lines changed

4 files changed

+588
-0
lines changed

‎README.md‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ These are some of the user interfaces that we've built using Vanna. You can use
5959
- [Milvus](https://github.com/vanna-ai/vanna/tree/main/src/vanna/milvus)
6060
- [Qdrant](https://github.com/vanna-ai/vanna/tree/main/src/vanna/qdrant)
6161
- [Weaviate](https://github.com/vanna-ai/vanna/tree/main/src/vanna/weaviate)
62+
- [Oracle](https://github.com/vanna-ai/vanna/tree/main/src/vanna/oracle)
6263

6364
## Supported Databases
6465

‎pyproject.toml‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,3 +57,4 @@ pgvector = ["langchain-postgres>=0.0.12"]
5757
faiss-cpu = ["faiss-cpu"]
5858
faiss-gpu = ["faiss-gpu"]
5959
xinference-client = ["xinference-client"]
60+
oracle = ["oracledb", "chromadb"]

‎src/vanna/oracle/__init__.py‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from .oracle_vector import Oracle_VectorStore

0 commit comments

Comments
 (0)