{"id":26548556,"url":"https://github.com/hakannyucel/ai-faq-chatbot","last_synced_at":"2026-04-04T21:33:02.144Z","repository":{"id":283595162,"uuid":"952282207","full_name":"hakannyucel/ai-faq-chatbot","owner":"hakannyucel","description":"An interactive AI-powered chatbot for answering frequently asked questions. This project combines modern web technologies with AI to create a seamless user experience for getting quick and accurate answers","archived":false,"fork":false,"pushed_at":"2025-03-21T07:04:40.000Z","size":102,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-03T16:26:18.395Z","etag":null,"topics":["ai","chatbot","css","deepseek","deepseek-chat","faq","nextjs","react","typescript"],"latest_commit_sha":null,"homepage":"https://ai-faq-chatbot.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/hakannyucel.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-03-21T03:01:38.000Z","updated_at":"2025-07-17T19:06:25.000Z","dependencies_parsed_at":null,"dependency_job_id":"e2aa1924-44ef-45ef-bbc2-c58c0248978f","html_url":"https://github.com/hakannyucel/ai-faq-chatbot","commit_stats":null,"previous_names":["hakannyucel/ai-faq-chatbot"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hakannyucel/ai-faq-chatbot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hakannyucel%2Fai-faq-chatbot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hakannyucel%2Fai-faq-chatbot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hakannyucel%2Fai-faq-chatbot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hakannyucel%2Fai-faq-chatbot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hakannyucel","download_url":"https://codeload.github.com/hakannyucel/ai-faq-chatbot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hakannyucel%2Fai-faq-chatbot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31415110,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T20:09:54.854Z","status":"ssl_error","status_checked_at":"2026-04-04T20:09:44.350Z","response_time":60,"last_error":"SSL_read: 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":["ai","chatbot","css","deepseek","deepseek-chat","faq","nextjs","react","typescript"],"created_at":"2025-03-22T06:19:22.325Z","updated_at":"2026-04-04T21:33:02.137Z","avatar_url":"https://github.com/hakannyucel.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AI FAQ Chatbot\n\nAn interactive AI-powered chatbot for answering frequently asked questions. This project combines modern web technologies with AI to create a seamless user experience for getting quick and accurate answers.\n\n![AI FAQ Chatbot](https://via.placeholder.com/1200x630/4F46E5/FFFFFF?text=AI+FAQ+Chatbot)\n\n## Features\n\n- 🤖 AI-powered responses using the Deepseek API\n- 💬 Real-time chat interface\n- 📱 Responsive design for all devices\n- 🔧 Admin dashboard for FAQ management\n- 📊 Clean and intuitive user interface\n- 🔒 Secure processing of user queries\n\n## Tech Stack\n\n- **Next.js** - React framework for server-side rendering and static site generation\n- **React** - JavaScript library for building user interfaces\n- **TypeScript** - Typed superset of JavaScript\n- **Deepseek API** - Natural language processing capabilities\n- **CSS** - For styling components and layouts\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js 18.x or later\n- npm or yarn package manager\n\n### Installation\n\n1. Clone the repository:\n\n```bash\ngit clone https://github.com/hakannyucel/ai-faq-chatbot.git\ncd ai-faq-chatbot\n```\n\n2. Install dependencies:\n\n```bash\nnpm install\n# or\nyarn install\n```\n\n3. Create a `.env.local` file in the root directory with your Deepseek API key:\n\n```\nDEEPSEEK_API_KEY=your_api_key_here\n```\n\n4. Start the development server:\n\n```bash\nnpm run dev\n# or\nyarn dev\n```\n\n5. Open [http://localhost:3000](http://localhost:3000) in your browser to see the application.\n\n## Project Structure\n\n```\nai-faq-chatbot/\n│\n├── app/                     # Application source code\n│   ├── components/          # Reusable React components\n│   │   ├── ChatBox.tsx      # Main chat container\n│   │   ├── MessageList.tsx  # Display for chat messages\n│   │   ├── MessageInput.tsx # User input component\n│   │   ├── Header.tsx       # Site header component\n│   │   └── Footer.tsx       # Site footer component\n│   │\n│   ├── services/            # API and business logic\n│   │   └── chatService.ts   # Service for interacting with Deepseek API\n│   │\n│   ├── types/               # TypeScript type definitions\n│   │   └── chat.ts          # Types for chat functionality\n│   │\n│   ├── pages/               # Page components\n│   │\n│   ├── styles/              # Global and component-specific styles\n│   │\n│   └── utils/               # Utility functions and helpers\n│\n├── public/                  # Static assets\n│\n└── docs/                    # Documentation files\n```\n\n## Usage\n\n### User Side\n\n1. Visit the homepage to interact with the AI chatbot.\n2. Type your question in the input field and press Enter or click the send button.\n3. Receive an instant AI-generated response.\n4. Continue the conversation with follow-up questions.\n\n### Admin Side\n\n1. Navigate to `/admin` to access the dashboard.\n2. Add new FAQ entries with questions and answers.\n3. Edit or delete existing FAQs.\n4. Updates are reflected immediately in the chatbot's knowledge base.\n\n## Deployment\n\nThis application can be easily deployed on platforms like Vercel, Netlify, or any other hosting service that supports Next.js applications.\n\n```bash\n# Build for production\nnpm run build\n# or\nyarn build\n\n# Start production server\nnpm start\n# or\nyarn start\n```\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add some amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\n\n## Acknowledgments\n\n- The Deepseek team for providing the AI API\n- Next.js team for the amazing framework\n- All contributors and supporters of the project\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhakannyucel%2Fai-faq-chatbot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhakannyucel%2Fai-faq-chatbot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhakannyucel%2Fai-faq-chatbot/lists"}