-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
53 lines (48 loc) · 1.15 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
[tool.poetry]
name = "shopware-knowledge"
version = "0.1.0"
description = ""
authors = ["Dominic Klein <d.klein@shopware.com>"]
readme = "README.md"
packages = [{include = "web"}]
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
langchain = "^0.1.11"
faiss-cpu = "^1.7.4"
unstructured = "^0.14.3"
libmagic = "^1.0"
openai = "^1.10.0"
langchain-openai = "^0.0.8"
langchain-community = "^0.0.25"
tiktoken = "^0.5.2"
fastapi = "^0.109.1"
pydantic = "^2.5.3"
pydantic-settings = "^2.1.0"
uvicorn = "^0.25.0"
gunicorn = "^22.0.0"
httpcore = {extras = ["http2"], version = "^1.0.2"}
httpx = "^0.26.0"
python-multipart = "^0.0.18"
aiofiles = "^23.2.1"
beautifulsoup4 = "^4.12.2"
lxml = "^5.0.0"
python-frontmatter = "^1.0.1"
typer = "^0.9.0"
rich = "^13.7.0"
pyyaml = "^6.0.1"
langchainhub = "^0.1.14"
posthog = "^3.1.0"
asyncio = "^3.4.3"
[tool.poetry.dev-dependencies]
tensorflow-text = "^2.15.0"
pytest = "^7.4.4"
ruff = "^0.1.11"
markdownify = "^0.11.6"
python-slugify = "^8.0.1"
[tool.poetry.scripts]
cli = "cli.main:app"
[tool.poetry.group.dev.dependencies]
transformers = "^4.36.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"