Spaces:
Sleeping
Sleeping
Create pyproject.toml
Browse files- pyproject.toml +22 -0
pyproject.toml
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[project]
|
2 |
+
name = "15-app"
|
3 |
+
version = "0.1.0"
|
4 |
+
description = "Session 15 - Open Source Endpoints"
|
5 |
+
readme = "README.md"
|
6 |
+
requires-python = ">=3.09"
|
7 |
+
dependencies = [
|
8 |
+
"asyncio===3.4.3",
|
9 |
+
"chainlit==2.2.1",
|
10 |
+
"huggingface-hub==0.27.0",
|
11 |
+
"langchain-huggingface==0.1.2",
|
12 |
+
"langchain==0.3.19",
|
13 |
+
"langchain-community==0.3.18",
|
14 |
+
"langsmith==0.3.11",
|
15 |
+
"python-dotenv==1.0.1",
|
16 |
+
"tqdm==4.67.1",
|
17 |
+
"langchain-openai==0.3.7",
|
18 |
+
"langchain-text-splitters==0.3.6",
|
19 |
+
"jupyter>=1.1.1",
|
20 |
+
"faiss-cpu>=1.10.0",
|
21 |
+
"websockets>=15.0",
|
22 |
+
]
|