-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (56 loc) · 1.4 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
[tool.poetry]
name = "ai-prompt-ctf"
version = "0.1.0"
description = ""
authors = ["Christo Goosen <[email protected]>"]
readme = "README.md"
#packages = [{include = "llm-ctf"}]
package-mode = false
[tool.poetry.dependencies]
python = ">=3.11,<3.14"
nltk = "^3.8.1"
sentence-transformers = "^3.2.1"
fastapi = "0.115.4"
pydantic-settings = "^2.0.3"
jinja2 = "^3.1.2"
python-multipart = "^0.0.17"
python-dotenv = "^1.0.0"
clean-text = "^0.6.0"
unidecode = "^1.3.7"
openai = "^1.1.1"
bandit = "^1.7.5"
googletrans = {git = "https://github.com/ssut/py-googletrans", rev = "master"}
gunicorn = "23.0.0"
transformers = "^4.46.1"
accelerate = "^1.1.0"
fastapi-cli = "^0.0.5"
llama-index = "^0.11.18"
llama-index-vector-stores-chroma = "^0.2.0"
chromadb = "^0.5.7"
jinja-markdown = "^1.210911"
slowapi = "^0.1.9"
llama-index-packs-agents-coa = "^0.2.0"
llama-index-agent-coa = "^0.2.0"
sentencepiece = "^0.2.0"
certifi = "^2024.8.30"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
importanize = "^0.7.0"
memory-profiler = "^0.61.0"
black = "^23.11.0"
flake8 = "^6.1.0"
flake8-bugbear = "^23.12.2"
bandit = "^1.7.5"
pytest-cov = "^4.1.0"
uvicorn = "^0.23.2"
setuptools = "^70.0.0"
huggingface-hub = "0.26.2"
pytest-asyncio = "^0.24.0"
djlint = "^1.35.2"
anyio = "^4.6.2.post1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 80
target-version = ["py311"]