Spaces:
Sleeping
Sleeping
Update pyproject.toml
Browse files- pyproject.toml +23 -22
pyproject.toml
CHANGED
|
@@ -1,22 +1,23 @@
|
|
| 1 |
-
[project]
|
| 2 |
-
name = "pilates_fine_tuned"
|
| 3 |
-
version = "0.1.0"
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
"
|
| 8 |
-
"
|
| 9 |
-
"
|
| 10 |
-
"langchain
|
| 11 |
-
"langchain-
|
| 12 |
-
"langchain-
|
| 13 |
-
"
|
| 14 |
-
"
|
| 15 |
-
"
|
| 16 |
-
"
|
| 17 |
-
"
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "pilates_fine_tuned"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
requires-python = ">=3.10"
|
| 5 |
+
description = "A fine-tuned pilates project."
|
| 6 |
+
dependencies = [
|
| 7 |
+
"langchain-huggingface>=0.0.6",
|
| 8 |
+
"chainlit>=2.5.5",
|
| 9 |
+
"faiss-cpu>=1.11.0",
|
| 10 |
+
"langchain>=0.3.25",
|
| 11 |
+
"langchain-community>=0.3.24",
|
| 12 |
+
"langchain-openai>=0.3.16",
|
| 13 |
+
"langchain-core>=0.0.1", # Added langchain-core
|
| 14 |
+
"pymupdf>=1.25.5",
|
| 15 |
+
"pytube>=15.0.0",
|
| 16 |
+
"unstructured>=0.17.2",
|
| 17 |
+
"youtube-transcript-api>=1.0.3",
|
| 18 |
+
"websockets==11.0.3"
|
| 19 |
+
]
|
| 20 |
+
|
| 21 |
+
[build-system]
|
| 22 |
+
requires = ["setuptools", "wheel"]
|
| 23 |
+
build-backend = "setuptools.build_meta"
|