frkhan commited on
Commit
ec72ec6
Β·
0 Parent(s):

Initial commit.

Browse files
Files changed (3) hide show
  1. .gitignore +33 -0
  2. app.py +0 -0
  3. requirements.txt +6 -0
.gitignore ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python artifacts
2
+ __pycache__/
3
+ *.pyc
4
+ *.py[cod]
5
+ *.egg
6
+ *.egg-info/
7
+ dist/
8
+ build/
9
+ venv/
10
+ .env
11
+
12
+ # Chroma DB files
13
+ chroma_db/
14
+ *.sqlite3
15
+ index/
16
+ collections/
17
+
18
+ # Environment files
19
+ .env
20
+ *.log
21
+
22
+ # OS-specific
23
+ .DS_Store
24
+ Thumbs.db
25
+
26
+ # Docker
27
+ *.dockerfile
28
+ *.tar
29
+ *.log
30
+ *.pid
31
+ *.db
32
+ *.sqlite3
33
+ docker-compose.override.yml
app.py ADDED
File without changes
requirements.txt ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ gradio
2
+ langchain
3
+ chromadb
4
+ PyMuPDF
5
+ langchain-google-genai
6
+ langchain-nvidia-ai-endpoints