├── .github └── workflows │ └── docker-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── WHAT_IS_IT.md ├── docker ├── docker-compose.yml ├── dockerfile └── requirements.txt ├── logo.png ├── normalized_semantic_chunker.py ├── pytest.ini ├── requirements.txt ├── test ├── pytest.ini ├── test_api.py └── test_data │ ├── alice_in_wonderland.txt │ ├── request.py │ └── response.json └── what-is-it.jpg /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-models/Normalized-Semantic-Chunker/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-models/Normalized-Semantic-Chunker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-models/Normalized-Semantic-Chunker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-models/Normalized-Semantic-Chunker/HEAD/README.md -------------------------------------------------------------------------------- /WHAT_IS_IT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-models/Normalized-Semantic-Chunker/HEAD/WHAT_IS_IT.md -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-models/Normalized-Semantic-Chunker/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /docker/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-models/Normalized-Semantic-Chunker/HEAD/docker/dockerfile -------------------------------------------------------------------------------- /docker/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-models/Normalized-Semantic-Chunker/HEAD/docker/requirements.txt -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-models/Normalized-Semantic-Chunker/HEAD/logo.png -------------------------------------------------------------------------------- /normalized_semantic_chunker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-models/Normalized-Semantic-Chunker/HEAD/normalized_semantic_chunker.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | asyncio_default_fixture_loop_scope = function 3 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-models/Normalized-Semantic-Chunker/HEAD/requirements.txt -------------------------------------------------------------------------------- /test/pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | asyncio_default_fixture_loop_scope = function 3 | -------------------------------------------------------------------------------- /test/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-models/Normalized-Semantic-Chunker/HEAD/test/test_api.py -------------------------------------------------------------------------------- /test/test_data/alice_in_wonderland.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-models/Normalized-Semantic-Chunker/HEAD/test/test_data/alice_in_wonderland.txt -------------------------------------------------------------------------------- /test/test_data/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-models/Normalized-Semantic-Chunker/HEAD/test/test_data/request.py -------------------------------------------------------------------------------- /test/test_data/response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-models/Normalized-Semantic-Chunker/HEAD/test/test_data/response.json -------------------------------------------------------------------------------- /what-is-it.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-models/Normalized-Semantic-Chunker/HEAD/what-is-it.jpg --------------------------------------------------------------------------------