-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
71 lines (64 loc) · 1.7 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[tool.poetry]
name = "sage"
version = "0.0.14"
description = "Sage: A conversational AI assistant simplifying data interactions with intuitive ease"
authors = ["Ayo Ayibiowu <charles.ayibiowu@hotmail.com>"]
license = "Apache-2.0 license"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = ">=3.11,<3.13"
anyio = "^3.7.1"
asyncer = "^0.0.7"
duckduckgo-search = "4.1.1"
aiohttp = "^3.9.1"
faiss-cpu = "1.9.0"
gitpython = "^3.1.43"
html2text = "^2024.2.26"
huggingface-hub = "^0.25.2"
jira = "^3.8.0"
markdownify = "^0.13.1"
openai = "^1.13.3"
pdf2image = "1.17.0"
python-docx = "1.1.2"
pyyaml = "6.0.1"
requests = "2.32.3"
sentence-transformers = "^2.7.0"
toml = "0.10.2"
transformers = "^4.45.2"
unstructured = { extras = ["docx", "pdf", "xlsx"], version = "^0.16.11" }
xlsxwriter = "3.1.9"
python-gitlab = "4.3.0"
markdown = "^3.5.2"
apscheduler = "^3.10.4"
croniter = "^5.0.1"
atlassian-python-api = "^3.41.11"
aiosqlite = "^0.20.0"
litellm = "^1.46.0"
dataclasses-json = "^0.6.7"
chainlit = "1.3.2"
crewai = "^0.86.0"
langchain-core = "^0.3.15"
langchain = "^0.3.7"
langchain-community = "^0.3.5"
[tool.poetry.group.tests]
optional = true
[tool.poetry.group.tests.dependencies]
pytest = "^8.2.2"
pytest-cov = "^5.0.0"
[tool.poetry.group.dev.dependencies]
codespell = { version = "^2.2.6" }
ruff = { version = "^0.3.0" }
[tool.pytest.ini_options]
testpaths = ["tests/unit_tests"]
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::PendingDeprecationWarning",
"default::DeprecationWarning:sage.*",
"default::PendingDeprecationWarning:sage.*",
]
[tool.codespell]
skip = "./.git,./data,./poetry.lock"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"