Spaces:
Sleeping
Sleeping
akshayvernekar11 commited on
Commit ·
08074da
1
Parent(s): c395860
added toml
Browse files- pyproject.toml +14 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "aie5-deploypythonicrag"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
description = "Simple Pythonic RAG App"
|
| 5 |
+
readme = "README.md"
|
| 6 |
+
requires-python = ">=3.13"
|
| 7 |
+
dependencies = [
|
| 8 |
+
"chainlit>=2.0.4",
|
| 9 |
+
"numpy>=2.2.2",
|
| 10 |
+
"openai>=1.59.9",
|
| 11 |
+
"pydantic==2.10.1",
|
| 12 |
+
"pypdf2>=3.0.1",
|
| 13 |
+
"websockets>=14.2",
|
| 14 |
+
]
|