JBHF commited on
Commit
c9fcdf2
1 Parent(s): 6e2e2d2

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +33 -20
requirements.txt CHANGED
@@ -1,23 +1,36 @@
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"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # local-rag-example
2
+ python == ">=3.9,<3.9.7 || >3.9.7,<3.12"
3
+ langchain >= "0.0.343"
4
+ streamlit-chat >= "0.1.1"
5
+ pypdf >= "3.17.1"
6
+ fastembed >= "0.1.1"
7
+ openai >= "1.3.6"
8
+ langchainhub >= "0.1.14"
9
+ chromadb >= "0.4.18"
10
+ streamlit >= "1.29.0"
11
+ watchdog >= "3.0.0"
12
 
 
 
 
 
 
 
 
 
 
 
 
13
 
14
 
15
+ #[tool.poetry]
16
+ #name = "local-rag-example"
17
+ #version = "0.1.0"
18
+ #description = ""
19
+ #authors = ["Duy Huynh <vndee.huynh@gmail.com>"]
20
+ #readme = "README.md"
21
+ #
22
+ #[tool.poetry.dependencies]
23
+ #python = ">=3.9,<3.9.7 || >3.9.7,<3.12"
24
+ #langchain = "^0.0.343"
25
+ #streamlit-chat = "^0.1.1"
26
+ #pypdf = "^3.17.1"
27
+ #fastembed = "^0.1.1"
28
+ #openai = "^1.3.6"
29
+ #langchainhub = "^0.1.14"
30
+ #chromadb = "^0.4.18"
31
+ #streamlit = "^1.29.0"
32
+ #watchdog = "^3.0.0"
33
+ #
34
+ #[build-system]
35
+ #requires = ["poetry-core"]
36
+ #build-backend = "poetry.core.masonry.api"