Spaces:
Sleeping
Sleeping
jeevan
commited on
Commit
·
abaf897
1
Parent(s):
c4268fa
testing with other packages
Browse files- .gitignore +2 -0
- .vscode/launch.json +15 -0
- .vscode/settings.json +12 -0
- requirements.txt +5 -1
.gitignore
CHANGED
@@ -1 +1,3 @@
|
|
1 |
__pycache__/
|
|
|
|
|
|
1 |
__pycache__/
|
2 |
+
.venv/*
|
3 |
+
.env
|
.vscode/launch.json
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"configurations": [
|
3 |
+
{
|
4 |
+
"name": "Python Debugger: Current File",
|
5 |
+
"type": "debugpy",
|
6 |
+
"request": "launch",
|
7 |
+
"program": "${workspaceFolder}/app.py",
|
8 |
+
"args": ["run"],
|
9 |
+
"console": "integratedTerminal",
|
10 |
+
"envFile": "${workspaceFolder}/.env",
|
11 |
+
"python": "${workspaceFolder}/.venv/bin/python",
|
12 |
+
|
13 |
+
}
|
14 |
+
]
|
15 |
+
}
|
.vscode/settings.json
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"python.analysis.extraPaths": [
|
3 |
+
"/Users/jeevan/Documents/Learnings/ai-engineering-bootcamp/AIE4/AIE4-DeployPythonicRAG/venv/lib/python3.12/site-packages",
|
4 |
+
],
|
5 |
+
"python.terminal.activateEnvironment": false,
|
6 |
+
"python.analysis.diagnosticSeverityOverrides": {
|
7 |
+
"reportMissingImports": "none"
|
8 |
+
},
|
9 |
+
"python.defaultInterpreterPath": "/Users/jeevan/Documents/Learnings/ai-engineering-bootcamp/AIE4/AIE4-DeployPythonicRAG/venv/lib/python3.12/site-packages",
|
10 |
+
"sarif-viewer.connectToGithubCodeScanning": "off"
|
11 |
+
"python.envFile": "${workspaceFolder}/.env"
|
12 |
+
}
|
requirements.txt
CHANGED
@@ -1,3 +1,7 @@
|
|
1 |
numpy
|
2 |
chainlit==0.7.700
|
3 |
-
openai
|
|
|
|
|
|
|
|
|
|
1 |
numpy
|
2 |
chainlit==0.7.700
|
3 |
+
openai
|
4 |
+
langchain-text-splitters
|
5 |
+
pypdf
|
6 |
+
langchain-community
|
7 |
+
qdrant-client
|