-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
39 lines (34 loc) · 943 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
[tool.poetry]
name = "func-ai"
version = "0.0.14"
description = "AI Functional Catalog - OpenAI functions on steriods"
authors = ["Trayan Azarov <[email protected]>"]
readme = "README.md"
license = "MIT"
packages = [{ include = "func_ai" }]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/amikos-tech/func-ai/issues"
"Homepage" = "https://github.com/amikos-tech/func-ai/"
"Source" = "https://github.com/amikos-tech/func-ai/"
[tool.poetry.dependencies]
python = "^3.10"
openai = "^0.27.8"
requests = "^2.31.0"
chromadb = "^0.4.2"
pyyaml = "^6.0"
jsonschema = "^4.18.0"
python-dotenv = "^1.0.0"
tenacity = "^8.2.2"
jinja2 = "^3.1.2"
gradio = "^3.36.1"
transformers = "^4.30.2"
torch = "^2.0.1"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.0"
pytest-env = "^0.8.2"
pytest-html = "^3.2.0"
pytest-metadata = "^3.0.0"
jupyter = "^1.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"