-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (36 loc) · 925 Bytes
/
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
[tool.poetry]
name = "vlm-rag-chat"
version = "0.1.0"
description = "Chat about your own textual and visual documents"
authors = ["Rustem Galiullin <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
haystack-ai = "^2.2.3"
ollama-haystack = "^0.0.7"
hayhooks = "^0.0.15"
gradio = "^4.36.1"
fire = "^0.6.0"
requests = "^2.32.3"
qdrant-haystack = "^3.8.1"
pyyaml = "^6.0.1"
pydantic = "^2.7.4"
markdown-it-py = "^3.0.0"
mdit-plain = "^1.0.1"
pypdf = "^4.2.0"
sentence-transformers = "^3.0.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.2"
pytest-mock = "^3.14.0"
pre-commit = "^3.7.1"
[tool.poetry.group.docker.dependencies]
ollama-haystack = "^0.0.7"
qdrant-haystack = "^3.8.1"
markdown-it-py = "^3.0.0"
mdit-plain = "^1.0.1"
pypdf = "^4.2.0"
sentence-transformers = "^3.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"