tony-42069 commited on
Commit
80e51c6
·
1 Parent(s): fbfbbd7

Add dependency specifications

Browse files
package-lock.json ADDED
The diff for this file is too large to render. See raw diff
 
package.json ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "cre-chatbot-rag",
3
+ "version": "1.0.0",
4
+ "private": true,
5
+ "scripts": {
6
+ "dev": "next dev",
7
+ "build": "next build",
8
+ "start": "next start"
9
+ },
10
+ "dependencies": {
11
+ "@chakra-ui/react": "^2.8.2",
12
+ "@emotion/react": "^11.11.1",
13
+ "@emotion/styled": "^11.11.0",
14
+ "axios": "^1.6.2",
15
+ "framer-motion": "^10.16.16",
16
+ "next": "^14.0.4",
17
+ "react": "^18.2.0",
18
+ "react-dom": "^18.2.0",
19
+ "vercel": "^39.1.1"
20
+ }
21
+ }
requirements-dev.txt ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ -r requirements.txt
2
+
3
+ # Testing
4
+ pytest==7.4.3
5
+ pytest-cov==4.1.0
6
+
7
+ # Linting
8
+ flake8==6.1.0
9
+ black==23.11.0
10
+
11
+ # Type checking
12
+ mypy==1.7.1
13
+
14
+ # Documentation
15
+ sphinx==7.2.6
16
+ sphinx-rtd-theme==1.3.0
17
+
18
+ # Development tools
19
+ pre-commit==3.5.0
20
+ python-dotenv==1.0.0
requirements.txt ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ streamlit==1.29.0
2
+ openai==1.6.1
3
+ python-dotenv==1.0.0
4
+ PyPDF2==3.0.1
5
+ langchain==0.0.352
6
+ chromadb==0.3.26
7
+ pydantic==1.10.13
8
+ azure-storage-blob==12.19.0
9
+ numpy==1.22.4
10
+ duckdb==0.9.2
11
+ typing-inspect==0.8.0
12
+ overrides==7.3.1
13
+ SQLAlchemy==2.0.19
requirements_api.txt ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ openai==1.6.1
2
+ python-dotenv==1.0.0
3
+ PyPDF2==3.0.1
4
+ langchain==0.0.352