Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python: Adding USearch memory connector #2358

Merged
merged 12 commits into from
Aug 23, 2023
Merged
116 changes: 115 additions & 1 deletion python/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ azure-search-documents = {version = "11.4.0b8", allow-prereleases = true}
azure-core = "^1.28.0"
azure-identity = "^1.13.0"

[tool.poetry.group.usearch.dependencies]
usearch = "^1.1.1"
pyarrow = "^12.0.1"

[tool.isort]
profile = "black"

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Copyright (c) Microsoft. All rights reserved.

from semantic_kernel.connectors.memory.usearch.usearch_memory_store import (
dluc marked this conversation as resolved.
Show resolved Hide resolved
USearchMemoryStore,
)

__all__ = ["USearchMemoryStore"]