├── .flake8 ├── .github ├── _wf │ ├── lint.yml │ ├── security.yml │ └── test.yml └── workflows │ └── release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── Readme.md ├── examples ├── __init__.py ├── env.py ├── lc.py ├── partition.py └── s3_lake.py ├── pyproject.toml ├── tests ├── conftest.py ├── test_properties.py └── test_unit.py ├── uv.lock └── vector_lake ├── __init__.py ├── __main__.py ├── core ├── __init__.py ├── hnsw.py └── index.py └── langchain └── __init__.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msoedov/vector_lake/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/_wf/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msoedov/vector_lake/HEAD/.github/_wf/lint.yml -------------------------------------------------------------------------------- /.github/_wf/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msoedov/vector_lake/HEAD/.github/_wf/security.yml -------------------------------------------------------------------------------- /.github/_wf/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msoedov/vector_lake/HEAD/.github/_wf/test.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msoedov/vector_lake/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msoedov/vector_lake/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msoedov/vector_lake/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msoedov/vector_lake/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msoedov/vector_lake/HEAD/Readme.md -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msoedov/vector_lake/HEAD/examples/env.py -------------------------------------------------------------------------------- /examples/lc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msoedov/vector_lake/HEAD/examples/lc.py -------------------------------------------------------------------------------- /examples/partition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msoedov/vector_lake/HEAD/examples/partition.py -------------------------------------------------------------------------------- /examples/s3_lake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msoedov/vector_lake/HEAD/examples/s3_lake.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msoedov/vector_lake/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msoedov/vector_lake/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msoedov/vector_lake/HEAD/tests/test_properties.py -------------------------------------------------------------------------------- /tests/test_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msoedov/vector_lake/HEAD/tests/test_unit.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msoedov/vector_lake/HEAD/uv.lock -------------------------------------------------------------------------------- /vector_lake/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msoedov/vector_lake/HEAD/vector_lake/__init__.py -------------------------------------------------------------------------------- /vector_lake/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msoedov/vector_lake/HEAD/vector_lake/__main__.py -------------------------------------------------------------------------------- /vector_lake/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msoedov/vector_lake/HEAD/vector_lake/core/__init__.py -------------------------------------------------------------------------------- /vector_lake/core/hnsw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msoedov/vector_lake/HEAD/vector_lake/core/hnsw.py -------------------------------------------------------------------------------- /vector_lake/core/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msoedov/vector_lake/HEAD/vector_lake/core/index.py -------------------------------------------------------------------------------- /vector_lake/langchain/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msoedov/vector_lake/HEAD/vector_lake/langchain/__init__.py --------------------------------------------------------------------------------