| 123456789101112131415161718192021222324 |
- [tool.poetry]
- name = "semantic-split"
- version = "0.1.0"
- description = "A better way to split (chunk/group) your text before inserting them into an LLM/Vector DB."
- authors = ["Your Name <your.email@example.com>"]
- license = "MIT"
- readme = "README.md"
- packages = [{include = "semantic_split"}]
- [[tool.poetry.source]]
- name = "semantic-split"
- url = "https://git.alexanderhuwiler.ch/alexander/semantic_split_MultiLang.git"
- [tool.poetry.dependencies]
- python = "*"
- sentence-transformers = "^2.2.2"
- spacy = "^3.5.3"
- [tool.poetry.group.dev.dependencies]
- pytest = "^7.3.1"
- [build-system]
- requires = ["poetry-core"]
- build-backend = "poetry.core.masonry.api"
|