{"id":24401612,"url":"https://github.com/chadokar/chatbotpdf","last_synced_at":"2026-04-08T23:34:35.772Z","repository":{"id":271390696,"uuid":"913164289","full_name":"Chadokar/ChatbotPDF","owner":"Chadokar","description":"PDF chatbot with RAG pipeline","archived":false,"fork":false,"pushed_at":"2025-01-07T12:49:23.000Z","size":17453,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-16T06:05:39.078Z","etag":null,"topics":["chatbot","fastapi","langchain","llm","python3","rag","react","typescript"],"latest_commit_sha":null,"homepage":"https://chatbotpdf.vercel.app/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Chadokar.png","metadata":{"files":{"readme":"Readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-07T06:47:04.000Z","updated_at":"2025-01-31T20:40:05.000Z","dependencies_parsed_at":"2025-01-07T12:39:25.518Z","dependency_job_id":"734691da-1d82-4f05-8bdf-5318a68f4e53","html_url":"https://github.com/Chadokar/ChatbotPDF","commit_stats":null,"previous_names":["chadokar/chatbotpdf"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Chadokar/ChatbotPDF","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Chadokar%2FChatbotPDF","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Chadokar%2FChatbotPDF/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Chadokar%2FChatbotPDF/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Chadokar%2FChatbotPDF/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Chadokar","download_url":"https://codeload.github.com/Chadokar/ChatbotPDF/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Chadokar%2FChatbotPDF/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279018772,"owners_count":26086449,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-14T02:00:06.444Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["chatbot","fastapi","langchain","llm","python3","rag","react","typescript"],"created_at":"2025-01-20T00:32:33.637Z","updated_at":"2025-10-14T10:12:35.332Z","avatar_url":"https://github.com/Chadokar.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ChatbotPDF\n\nThis is a full-stack application with a React frontend and a FastAPI backend. The application is containerized using Docker and can be run with a single command using `docker-compose up`.\n\n---\n\n![ChatbotPDF Demo](./pdf%20chatbot%20.gif)\n\n- Click [here](https://docs.google.com/document/d/1KGA15VUscxcSkF3qevS2hXMtH7uZLeBqX5iJciMHRAE/edit?usp=sharing) to read more about the project\n\n## Features\n\n- **Frontend**: Built with React and Vite, styled with TailwindCSS.\n- **Backend**: Powered by FastAPI, with Python dependencies managed via `requirements.txt`.\n- **Dockerized**: Easily run both the frontend and backend using Docker.\n- **Networking**: Both services communicate seamlessly within a shared Docker network.\n\n---\n\n## Prerequisites\n\nMake sure you have the following installed:\n\n- **Docker**: [Install Docker](https://docs.docker.com/get-docker/)\n- **Docker Compose**: [Install Docker Compose](https://docs.docker.com/compose/install/)\n\n---\n\n## Environment Setup\n\n1. Create a new file named `.env` in the `/server` directory\n2. Add the following environment variables:\n\n```env\n# MongoDB Connection String\n# Replace \u003cyour_mongodb_connection_string\u003e with your actual MongoDB connection URL\n# Example: mongodb://username:password@host:port/database\nMONGODB_URI=\u003cyour_mongodb_connection_string\u003e\n\n# Google Gemini API Key\n# Get your API key from: https://makersuite.google.com/app/apikey\nGEMINI_API_KEY=\u003cyour_gemini_api_key\u003e\n```\n\n---\n\n## Access the Application\n\n```\nOnce the application is running:\n\nFrontend will be available at: http://localhost:3000\nBackend API will be available at: http://localhost:5000\n```\n\n## Project Structure\n\n```plaintext\nchatbotpdf/\n├── client/                     # Frontend (React)\n│   ├── src/                    # React source files\n│   ├── Dockerfile              # Dockerfile for frontend\n│   ├── package.json            # Node.js dependencies\n│   └── ...                     # Other frontend files\n├── server/                     # Backend (FastAPI)\n│   ├── routes/                 # API routes\n│   ├── utils/                  # Utility functions\n│   ├── Dockerfile              # Dockerfile for backend\n│   ├── main.py                 # FastAPI entry point\n│   ├── requirements.txt        # Python dependencies\n│   ├── .env                    # Environment variables (must be created manually)\n│   └── ...                     # Other backend files\n├── docker-compose.yml          # Docker Compose file to orchestrate services\n└── README.md                   # Documentation\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchadokar%2Fchatbotpdf","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchadokar%2Fchatbotpdf","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchadokar%2Fchatbotpdf/lists"}