Skip to content

Commit

Permalink
Merge pull request #765 from engchina/support-oracle-ai-vector
Browse files Browse the repository at this point in the history
Support oracle database as VectorStore - Fix:#764
  • Loading branch information
zainhoda authored Feb 8, 2025
2 parents 184dc58 + c977035 commit 9388668
Show file tree
Hide file tree
Showing 4 changed files with 588 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ These are some of the user interfaces that we've built using Vanna. You can use
- [Milvus](https://github.com/vanna-ai/vanna/tree/main/src/vanna/milvus)
- [Qdrant](https://github.com/vanna-ai/vanna/tree/main/src/vanna/qdrant)
- [Weaviate](https://github.com/vanna-ai/vanna/tree/main/src/vanna/weaviate)
- [Oracle](https://github.com/vanna-ai/vanna/tree/main/src/vanna/oracle)

## Supported Databases

Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,4 @@ pgvector = ["langchain-postgres>=0.0.12"]
faiss-cpu = ["faiss-cpu"]
faiss-gpu = ["faiss-gpu"]
xinference-client = ["xinference-client"]
oracle = ["oracledb", "chromadb"]
1 change: 1 addition & 0 deletions src/vanna/oracle/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .oracle_vector import Oracle_VectorStore
Loading

0 comments on commit 9388668

Please sign in to comment.