-
Notifications
You must be signed in to change notification settings - Fork 43
/
pyproject.toml
42 lines (37 loc) · 1.16 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
[tool.poetry]
name = "chainfury"
version = "1.7.0a2"
description = "ChainFury is a powerful tool that simplifies the creation and management of chains of prompts, making it easier to build complex chat applications using LLMs."
authors = ["Tune AI <[email protected]>"]
license = "Apache 2.0"
readme = "README.md"
repository = "https://github.com/NimbleBoxAI/ChainFury"
[tool.poetry.dependencies]
python = "^3.9,<3.12"
tuneapi = "0.1.1"
fire = "0.5.0"
Jinja2 = "3.1.2"
jinja2schema = "0.1.4"
pydantic = "2.6.1"
requests = "^2.31.0"
python-dotenv = "1.0.0"
urllib3 = ">=1.26.18"
tabulate = "0.9.0"
"cryptography" = ">=41.0.6"
stability-sdk = { version = "0.8.3", optional = true }
qdrant-client = { version = "1.5.4", optional = true }
boto3 = { version = "1.29.6", optional = true }
[tool.poetry.extras]
all = ["stability-sdk", "qdrant-client", "boto3"]
stability = ["stability-sdk"]
qdrant = ["qdrant-client"]
[tool.poetry.group.dev.dependencies]
sphinx = "7.2.5"
sphinx_rtd_theme = "1.3.0"
poetry = "1.6.1"
[tool.poetry.scripts]
chainfury = "chainfury.cli:main"
cf = "chainfury.cli:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"