{"id":21347053,"url":"https://github.com/yann39/aiml-chatbot","last_synced_at":"2025-03-16T03:44:26.116Z","repository":{"id":223115290,"uuid":"759346828","full_name":"Yann39/aiml-chatbot","owner":"Yann39","description":"Minimal chatbot using Program AB implementation of the AIML 2.0 specification","archived":false,"fork":false,"pushed_at":"2024-03-17T15:41:42.000Z","size":8483,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-09T00:42:00.081Z","etag":null,"topics":["aiml","bootstrap","chatbot","java","spring-boot","zk","zkoss"],"latest_commit_sha":null,"homepage":"","language":"Java","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/Yann39.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":"2024-02-18T10:42:29.000Z","updated_at":"2024-02-18T11:19:23.000Z","dependencies_parsed_at":"2024-11-22T02:12:43.687Z","dependency_job_id":"e92d6cea-f0a6-4d1d-9445-4248eafd5c4d","html_url":"https://github.com/Yann39/aiml-chatbot","commit_stats":null,"previous_names":["yann39/aiml-chatbot"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Yann39%2Faiml-chatbot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Yann39%2Faiml-chatbot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Yann39%2Faiml-chatbot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Yann39%2Faiml-chatbot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Yann39","download_url":"https://codeload.github.com/Yann39/aiml-chatbot/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243822277,"owners_count":20353499,"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","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":["aiml","bootstrap","chatbot","java","spring-boot","zk","zkoss"],"created_at":"2024-11-22T02:12:29.789Z","updated_at":"2025-03-16T03:44:26.096Z","avatar_url":"https://github.com/Yann39.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Minimal AIML chatbot\n\nMinimal chatbot using **Program AB** implementation of the **AIML 2.0** draft specification.\n\n![Version](https://img.shields.io/badge/Version-0.0.3-2AAB92.svg)\n![Static Badge](https://img.shields.io/badge/Last%20update-20%20Dec%202022-blue)\n\n![Version](https://img.shields.io/badge/JDK-17-red.svg)\n![Version](https://img.shields.io/badge/Spring_Boot-2.7.5-green.svg)\n![Version](https://img.shields.io/badge/ZK-9.6.0-blue.svg)\n![Version](https://img.shields.io/badge/Bootstrap-5.2.2-purple.svg)\n\n---\n\n# Table of Contents\n\n* [About the Project](#about-the-project)\n* [Installation](#installation)\n* [Usage](#usage)\n* [License](#license)\n\n# About the project\n\n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\n        \u003cimg alt=\"Java logo\" src=\"doc/logo-java.svg\" height=\"72\"/\u003e\n    \u003c/td\u003e\n    \u003ctd\u003e\n        \u003cimg alt=\"Spring logo\" src=\"doc/logo-spring.svg\" height=\"36\"/\u003e\n    \u003c/td\u003e\n    \u003ctd\u003e\n        \u003cimg alt=\"ZK logo\" src=\"doc/logo-zk.svg\" height=\"96\"/\u003e\n    \u003c/td\u003e\n    \u003ctd\u003e\n        \u003cimg alt=\"Bootstrap logo\" src=\"doc/logo-bootstrap.svg\" height=\"56\"/\u003e\n    \u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\nThis program provides a minimal **Spring Boot** application with a **ZK** frontend allowing to interact with a rule-based chatbot easily.\n\nIt uses the **Program AB** library : \u003chttps://code.google.com/archive/p/program-ab/\u003e\n\nThis project is for testing purpose. The custom bot is very basic and just understand some French sentences, the goal was to test some minimal interactions,\nnot to have a complete production-ready chatbot.\n\n# Installation\n\n1. Clone the repository :\n    ```shell script\n    git clone https://github.com/Yann39/aiml-chatbot\n    ```\n2. Build the JAR file using **Maven** :\n   ```shell script\n   mvn clean package\n   ```\n3. Execute application from Intellij or run the JAR file :\n   ```shell script\n   java -jar /target/eth-hash-app.jar\n   ```\n4. Reach \u003chttp://localhost:8080/\u003e\n\n# Usage\n\nThere are 2 bots :\n\n- `super` : the default provided bot with the Program AB library.\n- `custom` : our custom bot\n\nYou can change the bot by changing the `BOT_NAME` constant in the main view model (`MainVm`).\n\nThen simply run the program and reach \u003chttp://localhost:8080\u003e.\n\n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\n      \u003cimg alt=\"Screenshot chatbot super\" src=\"doc/screen-chatbot2.png\"/\u003e\n    \u003c/td\u003e\n    \u003ctd\u003e\n      \u003cimg alt=\"Screenshot chatbot custom\" src=\"doc/screen-chatbot.png\"/\u003e\n    \u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\n# License\n\n[General Public License (GPL) v3](https://www.gnu.org/licenses/gpl-3.0.en.html)\n\nThis program is free software: you can redistribute it and/or modify it under the terms of the GNU\nGeneral Public License as published by the Free Software Foundation, either version 3 of the\nLicense, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without\neven the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nGeneral Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with this program. If not,\nsee \u003chttp://www.gnu.org/licenses/\u003e.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyann39%2Faiml-chatbot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyann39%2Faiml-chatbot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyann39%2Faiml-chatbot/lists"}