Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/imrandil/pdf_chat_bot_proj
This project is a full-stack Document Q&A system that allows users to ask questions about uploaded documents and receive accurate, content-based responses. The system consists of a React + TypeScript frontend and a Flask-based backend.
https://github.com/imrandil/pdf_chat_bot_proj
ai authentication clerkauth deployment flask groq llm python react render vector-database
Last synced: 6 days ago
JSON representation
This project is a full-stack Document Q&A system that allows users to ask questions about uploaded documents and receive accurate, content-based responses. The system consists of a React + TypeScript frontend and a Flask-based backend.
- Host: GitHub
- URL: https://github.com/imrandil/pdf_chat_bot_proj
- Owner: IMRANDIL
- Created: 2024-09-14T12:03:45.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-09-23T03:25:25.000Z (about 1 month ago)
- Last Synced: 2024-10-16T12:58:10.276Z (21 days ago)
- Topics: ai, authentication, clerkauth, deployment, flask, groq, llm, python, react, render, vector-database
- Language: Python
- Homepage: https://pdf-chat-bot-proj-1.onrender.com
- Size: 1.99 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Document Q&A System
This project is a full-stack Document Q&A system that allows users to ask questions about uploaded documents and receive accurate, content-based responses. The system consists of a React + TypeScript frontend and a Flask-based backend.
The backend uses advanced AI libraries like Langchain, FAISS, and Groq for efficient document processing and retrieval. The frontend allows users to ask questions and display results in an intuitive interface.
## Features
- **AI-Powered Q&A**: Ask questions about uploaded documents and get precise answers based on the content.
- **Document Embedding**: Efficient document embeddings using FAISS for fast document retrieval.
- **PDF Support**: Load PDF documents for analysis and question answering.
- **Google and Groq API Integration**: Embeddings and language models powered by Google AI and Groq.
- **Full-Stack Solution**: Frontend built with Vite, React, and TypeScript, and backend powered by Flask.---
## Tech Stack
### Frontend
- **React** with **TypeScript** (modularized for easy scalability)
- **Vite** for fast development and production builds
- **CSS Modules** for styling components### Backend
- **Flask**: Python micro-framework for building the API
- **FAISS**: Vector search for document retrieval
- **Langchain**: For question answering and language model integration
- **Groq**: Model for generating responses
- **Google Cloud AI**: Embedding API for document embedding
- **PyPDF2**: PDF loading and processing---
## Getting Started
### Prerequisites
Ensure you have the following installed:
- **Node.js** (>=14.x)
- **Python** (>=3.8)
- **Google Cloud API Key** and **Groq API Key**### Backend Setup
1. Clone the repository and navigate to the backend directory:
```bash
git clone https://github.com/yourusername/document-qa.git
cd document-qa/backend
```2. Create a virtual environment and activate it:
```bash
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
```3. Install the required Python packages:
```bash
pip install -r requirements.txt
```4. Set up environment variables:
- Create a `.env` file in the backend directory and add your API keys:
```
GROQ_API_KEY=your_groq_api_key
GOOGLE_API_KEY=your_google_api_key
```5. Run the Flask server:
```bash
flask run
```### Frontend Setup
1. Navigate to the frontend directory:
```bash
cd ../frontend
```2. Install the required Node.js packages:
```bash
npm install
```3. Start the development server:
```bash
npm run dev
```The frontend should now be running on `http://localhost:5173` and the backend API on `http://localhost:5000`.