{"id":21823043,"url":"https://github.com/sherbieny/chatbotto","last_synced_at":"2026-04-14T14:31:42.527Z","repository":{"id":218202252,"uuid":"715339334","full_name":"Sherbieny/chatbotto","owner":"Sherbieny","description":"A Japanese language chatbot application made with NextJs","archived":false,"fork":false,"pushed_at":"2024-01-24T01:16:13.000Z","size":8851,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-19T04:07:39.949Z","etag":null,"topics":["chatbot","copilot","copilot-chat","js","mongodb","mongodb-atlas","nextjs","nodejs","rakuten-ma","vercel-deployment"],"latest_commit_sha":null,"homepage":"https://chatbotto.vercel.app","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Sherbieny.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2023-11-07T00:11:04.000Z","updated_at":"2024-02-06T04:45:51.000Z","dependencies_parsed_at":"2025-03-21T11:43:05.246Z","dependency_job_id":null,"html_url":"https://github.com/Sherbieny/chatbotto","commit_stats":null,"previous_names":["sherbieny/chatbotto"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Sherbieny/chatbotto","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sherbieny%2Fchatbotto","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sherbieny%2Fchatbotto/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sherbieny%2Fchatbotto/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sherbieny%2Fchatbotto/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Sherbieny","download_url":"https://codeload.github.com/Sherbieny/chatbotto/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sherbieny%2Fchatbotto/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31801231,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T11:13:53.975Z","status":"ssl_error","status_checked_at":"2026-04-14T11:13:53.299Z","response_time":153,"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":["chatbot","copilot","copilot-chat","js","mongodb","mongodb-atlas","nextjs","nodejs","rakuten-ma","vercel-deployment"],"created_at":"2024-11-27T17:19:10.610Z","updated_at":"2026-04-14T14:31:42.507Z","avatar_url":"https://github.com/Sherbieny.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# チャットボット\n\n## 説明\n\nこのプロジェクトは、Nextjs と Nodejs で構築されたルールベースのチャットボットアプリケーションです。日本語の形態素解析に[RakutenMA](https://github.com/rakuten-nlp/rakutenma)ライブラリを使用し、ユーザーとの対話のためのチャットインターフェースを提供します。アプリケーションには、ユーザーの入力の各単語の重要性を決定するために使用される`Weights`データを管理するための管理ページも含まれています。\n\n## デモ\n\n[Chatbotto on Vercel](https://chatbotto.vercel.app/)\n\n## インストール\n\n1. リポジトリをクローンします。\n   ```bash\n   git clone \u003crepository-url\u003e\n   ```\n2. 依存関係をインストールします。\n   ```bash\n    npm install\n   ```\n3. `.env.local.tmp`を`.env.local`に名前を変更し、環境変数を入力します。\n\n4. ローカルで MongoDB のデータベースを作成するか、MongoDB Atlas などのクラウドデータベースサービスを使用します。\n   1. `chatbotto`という名前のデータベースと`weights`という名前のコレクションを作成します。\n   2. `qa`という名前のコレクションを作成します。\n   3. `settings`という名前のコレクションを作成します (空でも構いません)。\n   4. [オプション] `sample_data`の json ファイルを使用して、サンプルデータでデータベースを作成します。\n\n## アプリケーションの実行\n\n開発モードでアプリケーションを実行するには、次のコマンドを使用します。\n\n```bash\nnpm run dev\n```\n\n本番モードでアプリケーションをビルドして実行するには、次のコマンドを使用します。\n\n```bash\nnpm run build\nnpm start\n```\n\n## Docker\n\nこのプロジェクトには、Docker コンテナでアプリケーションを実行するための Dockerfile と docker-compose.yml ファイルが含まれています。Docker コンテナをビルドして実行するには、次のコマンドを使用します。\n\n```bash\ndocker-compose build\ndocker-compose up\n```\n\n## 機能\n\n- ユーザーとの対話のためのチャットインターフェース\n- RakutenMA ライブラリを使用した形態素解析\n- アプリケーションを管理するための管理ページ\n- ユーザーの入力の各単語の重要性を決定するための重みデータ\n- qa データは[JaQuAD](https://huggingface.co/SkelterLabsInc/bert-base-japanese-jaquad)データセットに基づいています\n- JaQuAD JSON データ処理は、JSON データセットファイルを取り込み、QA データベースコレクション用の QA データファイルに変換するものです。\n- 画像とアイコンは ChatGPT DALL-E によって生成されます\n\n## ツールとテクノロジー\n\n- [Nextjs](https://nextjs.org/)\n- [Nodejs](https://nodejs.org/en/)\n- [RakutenMA](https://github.com/rakuten-nlp/rakutenma)\n- [MongoDB](https://www.mongodb.com/)\n- [MongoDB Atlas](https://www.mongodb.com/cloud/atlas)\n- [VS Code](https://code.visualstudio.com/)\n- [Docker](https://www.docker.com/)\n- [Docker Compose](https://docs.docker.com/compose/)\n- [Material UI](https://material-ui.com/)\n- [React](https://reactjs.org/)\n- [Github Copilot](https://copilot.github.com/)\n- [Github Copilot Chat](https://marketplace.visualstudio.com/items?itemName=GitHub.copilot-chat)\n- [Vercel](https://vercel.com/)\n\n## 貢献\n\n貢献は歓迎します。プルリクエストを送信するか、変更内容を議論するための問題を作成してください。\n\n# Chatbotto\n\n## Description\n\nThis project is a rule-based chatbot application built with Nextjs, and Nodejs. It uses the [RakutenMA](https://github.com/rakuten-nlp/rakutenma) library for morphological analysis of Japanese language and provides a chat interface for user interaction. The application also includes an admin page for managing the application's `Weights` data that is used to determine the importance of each word in the user's input.\n\n## Demo\n\n[Chatbotto on Vercel](https://chatbotto.vercel.app/)\n\n## Installation\n\n1. Clone the repository:\n   ```bash\n   git clone \u003crepository-url\u003e\n   ```\n2. Install the dependencies:\n   ```bash\n   npm install\n   ```\n3. Rename `.env.local.tmp` to `.env.local` and fill in your environment variables.\n\n4. Create a database locally in MongoDB or use a cloud database service such as MongoDB Atlas.\n   1. Create a database named `chatbotto` and a collection named `weights`.\n   2. Create a collection named `qa`\n   3. Create a collection named `settings`(can be empty)\n   4. [Optional] use the json files in `sample_data` to populate the database with sample data.\n\n## Running the Application\n\nTo run the application in development mode, use the following command:\n\n```bash\nnpm run dev\n```\n\nTo build and run the application in production mode, use the following commands:\n\n```bash\nnpm run build\nnpm start\n```\n\n## Docker\n\nThis project includes a Dockerfile and a docker-compose.yml file for running the application in a Docker container. To build and run the Docker container, use the following commands:\n\n```bash\ndocker-compose build\ndocker-compose up\n```\n\n## Features\n\n- Chat interface for user interaction\n- Morphological analysis using the RakutenMA library\n- Admin page for managing the application\n- Weights data for determining the importance of each word in the user's input\n- qa data is based on [JaQuAD](https://huggingface.co/SkelterLabsInc/bert-base-japanese-jaquad) dataset\n- JaQuAD json data process that takes json dataset files and converts it into qa data files ready for the qa database collection\n- Images and icons are generated by ChatGPT DALL-E\n\n## Tools and Technologies\n\n- [Nextjs](https://nextjs.org/)\n- [Nodejs](https://nodejs.org/en/)\n- [RakutenMA](https://github.com/rakuten-nlp/rakutenma)\n- [MongoDB](https://www.mongodb.com/)\n- [MongoDB Atlas](https://www.mongodb.com/cloud/atlas)\n- [VS Code](https://code.visualstudio.com/)\n- [Docker](https://www.docker.com/)\n- [Docker Compose](https://docs.docker.com/compose/)\n- [Material UI](https://material-ui.com/)\n- [React](https://reactjs.org/)\n- [Github Copilot](https://copilot.github.com/)\n- [Github Copilot Chat](https://marketplace.visualstudio.com/items?itemName=GitHub.copilot-chat)\n- [Vercel](https://vercel.com/)\n\n## Contributing\n\nContributions are welcome. Please submit a pull request or create an issue to discuss the changes you want to make.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsherbieny%2Fchatbotto","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsherbieny%2Fchatbotto","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsherbieny%2Fchatbotto/lists"}