{"id":30605505,"url":"https://github.com/shub4am/rag-app","last_synced_at":"2026-04-08T20:51:29.164Z","repository":{"id":310804651,"uuid":"1041290827","full_name":"Shub4am/rag-app","owner":"Shub4am","description":"A Next.js-based Retrieval-Augmented Generation (RAG) chat application ","archived":false,"fork":false,"pushed_at":"2026-03-23T20:55:05.000Z","size":1332,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-24T18:39:39.164Z","etag":null,"topics":["aisdk","fullstack","langchain-js","nextjs","openaiapi","qdrant","rag","rag-chatbot","tailwindcss","typescript"],"latest_commit_sha":null,"homepage":"https://rootlm.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/Shub4am.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-08-20T09:12:58.000Z","updated_at":"2026-03-23T20:55:08.000Z","dependencies_parsed_at":"2025-08-20T11:32:18.942Z","dependency_job_id":"a78a3e3c-a8ad-4184-8434-7247cee3ca42","html_url":"https://github.com/Shub4am/rag-app","commit_stats":null,"previous_names":["shub4am/rag-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Shub4am/rag-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Shub4am%2Frag-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Shub4am%2Frag-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Shub4am%2Frag-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Shub4am%2Frag-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Shub4am","download_url":"https://codeload.github.com/Shub4am/rag-app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Shub4am%2Frag-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31573788,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"ssl_error","status_checked_at":"2026-04-08T14:31:17.202Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["aisdk","fullstack","langchain-js","nextjs","openaiapi","qdrant","rag","rag-chatbot","tailwindcss","typescript"],"created_at":"2025-08-30T02:19:44.660Z","updated_at":"2026-04-08T20:51:29.155Z","avatar_url":"https://github.com/Shub4am.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RAG App\n\nA Next.js-based Retrieval-Augmented Generation (RAG) application that allows users to upload, index, and chat with their documents (CSV, PDF, and URLs). The app provides a chat interface for querying indexed data and supports document management features.\n\n## Features\n\n- Upload and index documents (CSV, PDF, URLs)\n- Chat interface for querying indexed data\n- Document management panel\n- Sidebar for navigation\n- Modern UI built with Next.js and TypeScript\n- API endpoints for chat and document operations\n\n## Project Structure\n\n```\n├── app/\n│   ├── api/                # API routes for chat, collections, and document ingestion\n│   ├── components/         # React components (ChatInterface, DocumentPanel, etc.)\n│   ├── globals.css         # Global styles\n│   ├── layout.tsx          # App layout\n│   └── page.tsx            # Main page\n├── lib/                    # Utility functions\n├── public/                 # Static assets\n├── types/                  # TypeScript types\n├── uploads/                # Uploaded files\n├── package.json            # Project dependencies and scripts\n├── tsconfig.json           # TypeScript configuration\n├── next.config.ts          # Next.js configuration\n├── docker-compose.yml      # Docker setup\n└── README.md               # Project documentation\n```\n\n## Project Screenshot\n\n\u003cimg width=\"1920\" height=\"1080\" alt=\"Screenshot 2025-09-07 105212\" src=\"https://github.com/user-attachments/assets/bffadf79-dcdc-4181-8510-3ae5f645b073\" /\u003e\n\n\n### Prerequisites\n- Node.js (v18+ recommended)\n- npm or yarn\n\n### Installation\n\n1. Clone the repository:\n\t```sh\n\tgit clone https://github.com/Shub4am/rag-app.git\n\tcd rag-app\n\t```\n2. Install dependencies:\n\t```sh\n\tnpm install\n\t# or\n\tyarn install\n\t```\n3. Start the development server:\n\t```sh\n\tnpm run dev\n\t# or\n\tyarn dev\n\t```\n4. Open [http://localhost:3000](http://localhost:3000) in your browser.\n\n\n## Usage\n- Upload documents via the interface.\n- Use the chat to ask questions about your documents.\n- Manage your documents in the document panel.\n\n## Scripts\n- `npm run dev` — Start the development server\n- `npm run build` — Build for production\n- `npm run start` — Start the production server\n- `npm run lint` — Lint the codebase\n\n## Contributing\nPull requests are welcome! For major changes, please open an issue first to discuss what you would like to change.\n\n## License\n[MIT](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshub4am%2Frag-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshub4am%2Frag-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshub4am%2Frag-app/lists"}