{"id":25933093,"url":"https://github.com/qubitpi/chatbot-ws","last_synced_at":"2026-06-30T09:31:47.717Z","repository":{"id":278487406,"uuid":"935500697","full_name":"QubitPi/chatbot-ws","owner":"QubitPi","description":"Enterprise proxy webservice against various LLM chatbot frameworks, such as OpenAI  ","archived":false,"fork":false,"pushed_at":"2025-02-21T16:41:46.000Z","size":10679,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-21T16:43:01.755Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://chatbot.qubitpi.org/","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/QubitPi.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":"2025-02-19T14:48:20.000Z","updated_at":"2025-02-21T16:37:40.000Z","dependencies_parsed_at":"2025-02-21T16:54:22.198Z","dependency_job_id":null,"html_url":"https://github.com/QubitPi/chatbot-ws","commit_stats":null,"previous_names":["qubitpi/chatbot-ws","qubitpi/chatbot-ws-old"],"tags_count":0,"template":true,"template_full_name":"QubitPi/fast-ws","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/QubitPi%2Fchatbot-ws","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/QubitPi%2Fchatbot-ws/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/QubitPi%2Fchatbot-ws/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/QubitPi%2Fchatbot-ws/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/QubitPi","download_url":"https://codeload.github.com/QubitPi/chatbot-ws/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241763741,"owners_count":20016162,"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":[],"created_at":"2025-03-04T00:52:07.773Z","updated_at":"2025-03-04T00:52:08.362Z","avatar_url":"https://github.com/QubitPi.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"ChatbotWS\n=========\n\n![Java Version Badge][Java Version Badge]\n[![GitHub Workflow Status][GitHub Workflow Status]](https://github.com/QubitPi/chatbot-ws/actions/workflows/ci-cd.yaml)\n[![Apache License Badge]][Apache License, Version 2.0]\n\n__ChatbotWS__ is a [JSR 370] webservice template that lets us spin up Java webservice quickly through\n[GitHub templates]. Whether we want to create a chatbot that leverages popular APIs such as ChatGPT or connect to our\nown custom service, this template can do it all! Explore [chatbot.qubitpi.org](https://chatbot.qubitpi.org/) to view all\nof its available features, how to use them, examples and more!\n\n✨ Features\n-----------\n\n- Connect to any API\n- Data storage\n- Out-of-the-box healthcheck endpoint\n- Docusaurus-based documentation site freely hosted on GitHub Pages\n- Dockerized webservice\n- ELK application monitoring\n- Flexible webservice configuration\n\n🚀 Quick Start\n--------------\n\n### Spin Up a Container\n\nPlease make sure Docker is installed\n([_Installing Docker_](https://docker.qubitpi.org/desktop/setup/install/mac-install/)), then execute this on-click\ncommands:\n\n\u003e [!IMPORTANT]\n\u003e\n\u003e Please replace the `OPENAI_API_KEY` below with the actual key which can be obtained\n\u003e [here](https://platform.openai.com/api-keys)\n\n```console\ndocker run --name=chatbot-ws -it -p 8080:8080 jack20191124/chatbot-ws \\\n    -e OPENAI_API_KEY='OPENAI_API_KEY'\n```\n\nThat's it. A healthcheck endpoint can be pinned with\n\n```console\ncurl -v localhost:8080/v1/healthcheck\n```\n\nwhich would gave\n\n```console\n$ curl -v localhost:8080/v1/healthcheck\n*   Trying 127.0.0.1:8080...\n* Connected to localhost (127.0.0.1) port 8080 (#0)\n\u003e GET /v1/healthcheck HTTP/1.1\n\u003e Host: localhost:8080\n\u003e User-Agent: curl/7.85.0\n\u003e Accept: */*\n\u003e\n* Mark bundle as not supporting multiuse\n\u003c HTTP/1.1 200 OK\n\u003c Content-Length: 0\n\u003c Server: Jetty(11.0.15)\n\u003c\n* Connection #0 to host localhost left intact\n```\n\n### Send First Chat Request\n\n```console\ncurl --location 'http://localhost:8080/v1/openai/chat' --header 'Content-Type: application/json' --data '{\n    \"message\": \"Hello\"\n}' -v\n```\n\nDeveloper can now start adding business values without repeating the time-consuming scaffolding works. To proceed from\nhere, including getting and developing the webservice source code, please refer to the [documentation][Documentation]\nfor details.\n\nLicense\n-------\n\nThe use and distribution terms for [chatbot-ws]() are covered by the [Apache License, Version 2.0].\n\n[Apache License Badge]: https://img.shields.io/badge/Apache%202.0-F25910.svg?style=for-the-badge\u0026logo=Apache\u0026logoColor=white\n[Apache License, Version 2.0]: https://www.apache.org/licenses/LICENSE-2.0\n\n[Documentation]: https://chatbot.qubitpi.org/\n\n[GitHub templates]: https://docs.github.com/en/repositories/creating-and-managing-repositories/creating-a-template-repository#about-template-repositories\n[GitHub Workflow Status]: https://img.shields.io/github/actions/workflow/status/QubitPi/chatbot-ws/ci-cd.yaml?branch=master\u0026logo=github\u0026style=for-the-badge\n\n[Java Version Badge]: https://img.shields.io/badge/Java-17-brightgreen?style=for-the-badge\u0026logo=OpenJDK\u0026logoColor=white\n[chatbot-ws]: https://chatbot.qubitpi.org/\n[JSR 370]: https://jcp.org/en/jsr/detail?id=370\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqubitpi%2Fchatbot-ws","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fqubitpi%2Fchatbot-ws","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqubitpi%2Fchatbot-ws/lists"}