{"id":23179054,"url":"https://github.com/weberi/chatbotmakerspace","last_synced_at":"2026-02-09T00:31:27.494Z","repository":{"id":262474998,"uuid":"886892261","full_name":"weberi/ChatbotMakerspace","owner":"weberi","description":"This repository provides a GitHub Codespace environment prepared to develop a transactional chatbot using Rasa Open Source for conversational flow and Node-RED for custom actions.","archived":false,"fork":false,"pushed_at":"2024-11-12T15:53:07.000Z","size":6,"stargazers_count":5,"open_issues_count":0,"forks_count":137,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-06T16:45:33.514Z","etag":null,"topics":["ai-campus","beginner","chatbot","github-codespaces","ki-campus","ki-praktisch-anwenden","node-red","online-course","rasa","rasa-chatbot","step-by-step-zu-deinem-chatbot"],"latest_commit_sha":null,"homepage":"","language":null,"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/weberi.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}},"created_at":"2024-11-11T19:47:52.000Z","updated_at":"2025-07-19T00:36:43.000Z","dependencies_parsed_at":"2024-11-12T16:44:24.333Z","dependency_job_id":"4ef75f77-af5a-4aeb-a4ec-b139be9f615f","html_url":"https://github.com/weberi/ChatbotMakerspace","commit_stats":null,"previous_names":["weberi/chatbotmakerspace"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/weberi/ChatbotMakerspace","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weberi%2FChatbotMakerspace","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weberi%2FChatbotMakerspace/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weberi%2FChatbotMakerspace/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weberi%2FChatbotMakerspace/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/weberi","download_url":"https://codeload.github.com/weberi/ChatbotMakerspace/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weberi%2FChatbotMakerspace/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29251476,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-08T22:49:53.206Z","status":"ssl_error","status_checked_at":"2026-02-08T22:49:51.384Z","response_time":57,"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-campus","beginner","chatbot","github-codespaces","ki-campus","ki-praktisch-anwenden","node-red","online-course","rasa","rasa-chatbot","step-by-step-zu-deinem-chatbot"],"created_at":"2024-12-18T07:13:41.516Z","updated_at":"2026-02-09T00:31:27.430Z","avatar_url":"https://github.com/weberi.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# ChatbotMakerspace\n\nThis repository provides a GitHub Codespace environment prepared to develop a transactional chatbot using **[Rasa Open Source](https://rasa.com/docs/rasa/)** for conversational flow and **[Node-RED](https://nodered.org)** for custom actions.\n\nIt is designed to accompany the hands-on **[AI Campus](https://www.ai-campus.org/)** course on conversational AI: [Step by Step zu deinem Chatbot - KI praktisch anwenden!](https://ki-campus.org/courses/conversational-ai).\n\n### Setup Overview\n\nThis repository includes the setup for:\n\n- A [GitHub Codespace](https://github.com/features/codespaces) environment\n- A chatbot powered by [Rasa Open Source](https://rasa.com/docs/rasa/)\n- An action server for the chatbot running on [Node-RED](https://nodered.org), which utilizes [node-red-contrib-rasa-actionserver](https://github.com/weberi/node-red-contrib-rasa-actionserver) nodes for integration\n\n### Notes\n\n#### Start Rasa\n\nTo start the Rasa server, use the following command:\n\n   ```rasa run --port 5005 --cors \"*\"```\n\n#### Using Chatroom.html\nThe following HTML code is a basic setup for a chatbot interface. Replace https://your-codespace-url-5005.preview.app.github.dev with the appropriate URL for your Codespace.\n```\n\u003c!DOCTYPE html\u003e\n\u003chtml lang=\"en\"\u003e\n\n\u003chead\u003e\n    \u003clink rel=\"stylesheet\" href=\"https://cdn.statically.io/gh/weberi/chatroom/master/dist/Chatroom.css\" /\u003e\n    \u003clink rel=\"stylesheet\" type=\"text/css\" href=\"https://cdn.statically.io/gh/weberi/chatroom/master/index.css\"\u003e\n    \u003clink rel=\"stylesheet\" type=\"text/css\" href=\"https://cdn.statically.io/gh/weberi/chatroom/master/themes/theme2.css\" /\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n    \u003cdiv class=\"chat-container\"\u003e\u003c/div\u003e\n    \u003cscript src=\"https://cdn.statically.io/gh/weberi/chatroom/master/dist/Chatroom.js\"\u003e\u003c/script\u003e\n    \u003cscript type=\"text/javascript\"\u003e\n    var chatroom = new window.Chatroom({\n        host: \"https://your-codespace-url-5005.preview.app.github.dev\",   \n        title: \"Chat with a bot\",\n        container: document.querySelector(\".chat-container\"),\n        welcomeMessage: \"Nice to meet you.\",\n        speechRecognition: \"en-US\",\n        voiceLang: \"en-US\"\n    });\n    chatroom.openChat();\n    \u003c/script\u003e\n\u003c/body\u003e\n\u003c/html\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fweberi%2Fchatbotmakerspace","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fweberi%2Fchatbotmakerspace","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fweberi%2Fchatbotmakerspace/lists"}