Spaces:
Runtime error
Runtime error
Update requirements.txt
Browse files- requirements.txt +23 -0
requirements.txt
CHANGED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[tool.poetry]
|
| 2 |
+
name = "local-rag-example"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
description = ""
|
| 5 |
+
authors = ["Duy Huynh <vndee.huynh@gmail.com>"]
|
| 6 |
+
readme = "README.md"
|
| 7 |
+
|
| 8 |
+
[tool.poetry.dependencies]
|
| 9 |
+
python = ">=3.9,<3.9.7 || >3.9.7,<3.12"
|
| 10 |
+
langchain = "^0.0.343"
|
| 11 |
+
streamlit-chat = "^0.1.1"
|
| 12 |
+
pypdf = "^3.17.1"
|
| 13 |
+
fastembed = "^0.1.1"
|
| 14 |
+
openai = "^1.3.6"
|
| 15 |
+
langchainhub = "^0.1.14"
|
| 16 |
+
chromadb = "^0.4.18"
|
| 17 |
+
streamlit = "^1.29.0"
|
| 18 |
+
watchdog = "^3.0.0"
|
| 19 |
+
|
| 20 |
+
|
| 21 |
+
[build-system]
|
| 22 |
+
requires = ["poetry-core"]
|
| 23 |
+
build-backend = "poetry.core.masonry.api"
|