forked from mit-submit/A2rchi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
79 lines (76 loc) · 1.91 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
72
73
74
75
76
77
78
79
[project]
name = "a2rchi"
version = "0.1.0"
description = "An AI Augmented Research Chat Intelligence (A2rchi)"
requires-python = ">=3.7"
# sorted alphabetically by last name
authors = [
{name="Julius Heitkoetter", email="[email protected]"},
{name="Time Kraska", email="[email protected]"},
{name="Ludovico Mori", email="[email protected]"},
{name="Christoph Paus", email="[email protected]"},
{name="Matthew Russo", email="[email protected]"},
]
dependencies = [
"accelerate==0.23.0",
"backoff==2.2.1",
"beautifulsoup4==4.12.2",
"bitsandbytes==0.41.1",
"chromadb==0.4.12",
"clickhouse-connect==0.6.6",
"coloredlogs==15.0.1",
"duckdb==0.8.1",
"fastapi==0.99.1",
"flask==2.3.3",
"flask-cors==4.0.0",
"flatbuffers==23.5.26",
"hnswlib==0.7.0",
"httptools==0.6.0",
"humanfriendly==10.0",
"langchain==0.0.268",
"loguru==0.7.2",
"lz4==4.3.2",
"mistune==3.0.1",
"monotonic==1.6",
"onnxruntime==1.15.1",
"openai==0.27.9",
"overrides==7.3.1",
"pandas==2.1.0",
"peft==0.5.0",
"piazza-api==0.14.0",
"posthog==3.0.1",
"psycopg2==2.9.9",
"pulsar-client==3.2.0",
"pygments==2.16.1",
"pypdf==3.16.1",
"python-dotenv==1.0.0",
"python-redmine==2.4.0",
"regex==2023.6.3",
"requests==2.31.0",
"scipy==1.11.2",
"sentence-transformers==2.2.2",
"sentencepiece==0.1.99",
"sympy==1.12",
"tiktoken==0.4.0",
"tokenizers==0.13.3",
"torch==2.0.1",
"transformers==4.33.1",
"uvloop==0.17.0",
"watchfiles==0.19.0",
"zstandard==0.21.0",
]
[tool.setuptools]
packages = [
"a2rchi",
"a2rchi.bin",
"a2rchi.chains",
"a2rchi.interfaces",
"a2rchi.interfaces.chat_app",
"a2rchi.interfaces.uploader_app",
"a2rchi.utils",
]
[build-system]
requires = ["setuptools>=61.0.0"]
build-backed = "setuptools.build_meta"
[project.urls]
"Homepage" = "https://github.com/mit-submit/A2rchi"