Skip to content

Commit

Permalink
initial vectordb storage
Browse files Browse the repository at this point in the history
  • Loading branch information
lpinheiroms committed Oct 23, 2024
1 parent fb49453 commit 7da80e9
Show file tree
Hide file tree
Showing 8 changed files with 2,199 additions and 14 deletions.
7 changes: 4 additions & 3 deletions python/packages/autogen-ext/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "autogen-ext"
version = "0.4.0.dev2"
version = "0.4.0dev1"
license = {file = "LICENSE-CODE"}
description = "AutoGen extensions library"
readme = "README.md"
Expand All @@ -15,7 +15,7 @@ classifiers = [
"Operating System :: OS Independent",
]
dependencies = [
"autogen-core==0.4.0.dev2",
"autogen-core==0.4.0dev1",
]


Expand All @@ -27,6 +27,7 @@ langchain = ["langchain_core~= 0.3.3"]
azure = ["azure-core", "azure-identity"]
docker = ["docker~=7.0"]
openai = ["openai>=1.3"]
chromadb = ["chromadb~=0.5.15", "sentence-transformers"]

[tool.hatch.build.targets.wheel]
packages = ["src/autogen_ext"]
Expand Down Expand Up @@ -56,4 +57,4 @@ test = "pytest -n auto"
[tool.mypy]
[[tool.mypy.overrides]]
module = "docker.*"
ignore_missing_imports = true
ignore_missing_imports = true
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from ._chromadb import ChromaVectorDB
from ._factory import VectorDBFactory

__all__ = ["ChromaVectorDB", "VectorDBFactory"]
Loading

0 comments on commit 7da80e9

Please sign in to comment.