forked from onepointconsulting/data-questionnaire-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 836 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (28 loc) · 836 Bytes
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
[tool.poetry]
name = "data-questionnaire-agent"
version = "0.1.0"
description = "Implementation of an agent which asks questions and gives advices about a predefined question."
authors = ["Gil Fernandes <gil.fernandes@onepointltd.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
openai = "^0.28.0"
langchain = "^0.0.323"
prompt-toolkit = "^3.0.39"
tomli = "^2.0.1"
faiss-cpu = "^1.7.4"
tiktoken = "^0.5.1"
python-dotenv = "^1.0.0"
pydantic = "1.10.12"
duckduckgo-search = "^3.8.5"
pdfkit = "^1.0.0"
opencv-python = "^4.8.1.78"
scikit-image = "^0.21.0"
tenacity = "^8.2.3"
chainlit = {path = "wheels/chainlit-0.7.8.8-py3-none-any.whl", develop = true}
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.2"
black = "^23.11.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"