-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (45 loc) · 1.37 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[tool.poetry]
name = "neuralnest"
version = "0.1.0"
description = "NeuralNest: An open-source personal AI assistant designed for seamless data integration from various sources, offering versatile connections to Language Learning Models (LLMs), enhanced security, and human-in-the-loop options for a personalized AI experience."
authors = ["Foxicution <[email protected]>"]
readme = "README.md"
packages = [{include = "neuralnest", from = "src"}]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.10"
llama-index = "^0.8.11"
sentence-transformers = "^2.2.2"
sentencepiece = "^0.1.99"
protobuf = "^4.24.2"
bitsandbytes = "^0.41.1"
accelerate = "^0.22.0"
pymilvus = "^2.3.0"
setuptools = "^68.2.2"
pydantic = "^2.4.2"
[tool.poetry.group.dev.dependencies]
python-lsp-server = "^1.7.4"
python-lsp-ruff = "^1.5.1"
euporie = "^2.4.3"
ipykernel = "^6.25.2"
black = "^23.9.1"
isort = "^5.12.0"
notebook = "^7.0.4"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.2"
pyfakefs = "^5.2.4"
pytest-cov = "^4.1.0"
codecov = "^2.1.13"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[[tool.poetry.source]]
name = "PyPI"
priority = "default"
[[tool.poetry.source]]
name = "torch"
url = "https://download.pytorch.org/whl/cu118"
priority = "supplemental"
[tool.pytest.ini_options]
testpaths = ["tests"]
filterwarnings = ["ignore::DeprecationWarning:pymilvus.client.*:"]