├── .github └── workflows │ └── publish.yml ├── .gitignore ├── Images ├── relationships.png └── similarity_matrix.png ├── LICENSE ├── README.md ├── demo.py ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt ├── semantic_chunker ├── __init__.py ├── cli.py ├── core.py ├── export.py ├── integrations │ ├── __init__.py │ └── langchain.py └── visualization.py └── tests ├── __init__.py ├── test_core.py ├── test_export.py └── test_langchain_chunker.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rango-ramesh/advanced-chunker/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rango-ramesh/advanced-chunker/HEAD/.gitignore -------------------------------------------------------------------------------- /Images/relationships.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rango-ramesh/advanced-chunker/HEAD/Images/relationships.png -------------------------------------------------------------------------------- /Images/similarity_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rango-ramesh/advanced-chunker/HEAD/Images/similarity_matrix.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rango-ramesh/advanced-chunker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rango-ramesh/advanced-chunker/HEAD/README.md -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rango-ramesh/advanced-chunker/HEAD/demo.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rango-ramesh/advanced-chunker/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rango-ramesh/advanced-chunker/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rango-ramesh/advanced-chunker/HEAD/requirements.txt -------------------------------------------------------------------------------- /semantic_chunker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rango-ramesh/advanced-chunker/HEAD/semantic_chunker/__init__.py -------------------------------------------------------------------------------- /semantic_chunker/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rango-ramesh/advanced-chunker/HEAD/semantic_chunker/cli.py -------------------------------------------------------------------------------- /semantic_chunker/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rango-ramesh/advanced-chunker/HEAD/semantic_chunker/core.py -------------------------------------------------------------------------------- /semantic_chunker/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rango-ramesh/advanced-chunker/HEAD/semantic_chunker/export.py -------------------------------------------------------------------------------- /semantic_chunker/integrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /semantic_chunker/integrations/langchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rango-ramesh/advanced-chunker/HEAD/semantic_chunker/integrations/langchain.py -------------------------------------------------------------------------------- /semantic_chunker/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rango-ramesh/advanced-chunker/HEAD/semantic_chunker/visualization.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rango-ramesh/advanced-chunker/HEAD/tests/test_core.py -------------------------------------------------------------------------------- /tests/test_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rango-ramesh/advanced-chunker/HEAD/tests/test_export.py -------------------------------------------------------------------------------- /tests/test_langchain_chunker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rango-ramesh/advanced-chunker/HEAD/tests/test_langchain_chunker.py --------------------------------------------------------------------------------