forked from open-cogsci/sigmund-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (52 loc) · 1.03 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
[build-system]
requires = ["flit_core >=3.4"]
build-backend = "flit_core.buildapi"
[project]
name = "sigmund"
authors = [
{name = "Sebastiaan Mathôt", email = "[email protected]"}
]
readme = "readme.md"
license = {file = "COPYING"}
requires-python = ">=3.8"
dynamic = ["version", "description"]
dependencies = [
"anthropic",
"cryptography",
"datamatrix",
"faiss-cpu",
"flask",
"flask-login",
"flask-sqlalchemy",
"flask-wtf",
"flask-cors",
"jinja2",
"jq",
"langchain",
"langchain_core",
"langchain_community",
"langchain_openai",
"langchain_anthropic",
"langchain_mistralai",
"markdown",
"oauthlib",
"openai",
"mistralai",
"pdfminer.six",
"pygments",
"pyopenssl",
"redis",
"requests",
"scholarly",
"stripe",
"tiktoken"
]
keywords = ["ai", "chatbot", "llm"]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov"
]
[project.urls]
Documentation = "https://sigmundai.eu"
Source = "https://github.com/smathot/sigmundai"