Spaces:
Sleeping
Sleeping
Commit Β·
7bb19bb
1
Parent(s): c928e70
Prepare for Hugging Face Spaces deployment
Browse files- .gitignore +48 -0
- README.md +2 -2
- requirements.txt +10 -10
.gitignore
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Python
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.py[cod]
|
| 4 |
+
*$py.class
|
| 5 |
+
*.so
|
| 6 |
+
.Python
|
| 7 |
+
build/
|
| 8 |
+
develop-eggs/
|
| 9 |
+
dist/
|
| 10 |
+
downloads/
|
| 11 |
+
eggs/
|
| 12 |
+
.eggs/
|
| 13 |
+
lib/
|
| 14 |
+
lib64/
|
| 15 |
+
parts/
|
| 16 |
+
sdist/
|
| 17 |
+
var/
|
| 18 |
+
wheels/
|
| 19 |
+
*.egg-info/
|
| 20 |
+
.installed.cfg
|
| 21 |
+
*.egg
|
| 22 |
+
|
| 23 |
+
# Virtual Environment
|
| 24 |
+
.venv/
|
| 25 |
+
venv/
|
| 26 |
+
ENV/
|
| 27 |
+
env/
|
| 28 |
+
|
| 29 |
+
# Environment Variables
|
| 30 |
+
.env
|
| 31 |
+
|
| 32 |
+
# IDE
|
| 33 |
+
.vscode/
|
| 34 |
+
.idea/
|
| 35 |
+
*.swp
|
| 36 |
+
*.swo
|
| 37 |
+
*~
|
| 38 |
+
|
| 39 |
+
# OS
|
| 40 |
+
.DS_Store
|
| 41 |
+
Thumbs.db
|
| 42 |
+
|
| 43 |
+
# Project Specific
|
| 44 |
+
vector_db/
|
| 45 |
+
*.pdf
|
| 46 |
+
|
| 47 |
+
# Logs
|
| 48 |
+
*.log
|
README.md
CHANGED
|
@@ -2,8 +2,8 @@
|
|
| 2 |
|
| 3 |
A robust, RAG-based AI agent designed to assist users by answering questions from local PDF documentation and seamlessly creating GitHub support tickets when answers are unavailable.
|
| 4 |
|
| 5 |
-
##
|
| 6 |
-
[
|
| 7 |
## π Features
|
| 8 |
|
| 9 |
* **RAG (Retrieval-Augmented Generation)**: Answers user queries using a local knowledge base created from PDF documents.
|
|
|
|
| 2 |
|
| 3 |
A robust, RAG-based AI agent designed to assist users by answering questions from local PDF documentation and seamlessly creating GitHub support tickets when answers are unavailable.
|
| 4 |
|
| 5 |
+
## π Live Demo
|
| 6 |
+
[Try it on Hugging Face Spaces](https://huggingface.co/spaces/niddijoris/RAGCustomerSupportAgent)
|
| 7 |
## π Features
|
| 8 |
|
| 9 |
* **RAG (Retrieval-Augmented Generation)**: Answers user queries using a local knowledge base created from PDF documents.
|
requirements.txt
CHANGED
|
@@ -1,10 +1,10 @@
|
|
| 1 |
-
streamlit
|
| 2 |
-
openai
|
| 3 |
-
langchain
|
| 4 |
-
langchain-community
|
| 5 |
-
langchain-openai
|
| 6 |
-
pypdf
|
| 7 |
-
faiss-cpu
|
| 8 |
-
PyGithub
|
| 9 |
-
python-dotenv
|
| 10 |
-
tiktoken
|
|
|
|
| 1 |
+
streamlit==1.50.0
|
| 2 |
+
openai==2.16.0
|
| 3 |
+
langchain==0.3.27
|
| 4 |
+
langchain-community==0.3.31
|
| 5 |
+
langchain-openai==0.3.35
|
| 6 |
+
pypdf==6.6.2
|
| 7 |
+
faiss-cpu==1.13.0
|
| 8 |
+
PyGithub==2.8.1
|
| 9 |
+
python-dotenv==1.2.1
|
| 10 |
+
tiktoken==0.12.0
|