{"id":24986969,"url":"https://github.com/hitthecodelabs/rasatalks","last_synced_at":"2026-05-03T19:31:37.332Z","repository":{"id":222586677,"uuid":"757819724","full_name":"hitthecodelabs/RasaTalks","owner":"hitthecodelabs","description":"A detailed walkthrough for setting up and developing a Rasa chatbot","archived":false,"fork":false,"pushed_at":"2024-03-05T21:13:18.000Z","size":24019,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-29T10:47:24.063Z","etag":null,"topics":["action","actions","api","apis","python","rasa","rasa-core","rasa-nlu"],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hitthecodelabs.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-15T03:38:58.000Z","updated_at":"2024-11-20T03:37:06.000Z","dependencies_parsed_at":"2025-02-04T11:34:42.479Z","dependency_job_id":"1066a869-1fa7-4380-8991-7a785afc3c1d","html_url":"https://github.com/hitthecodelabs/RasaTalks","commit_stats":null,"previous_names":["hitthecodelabs/rasatalks"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hitthecodelabs/RasaTalks","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hitthecodelabs%2FRasaTalks","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hitthecodelabs%2FRasaTalks/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hitthecodelabs%2FRasaTalks/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hitthecodelabs%2FRasaTalks/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hitthecodelabs","download_url":"https://codeload.github.com/hitthecodelabs/RasaTalks/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hitthecodelabs%2FRasaTalks/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32582494,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T06:36:36.687Z","status":"ssl_error","status_checked_at":"2026-05-03T06:36:09.306Z","response_time":103,"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":["action","actions","api","apis","python","rasa","rasa-core","rasa-nlu"],"created_at":"2025-02-04T11:34:33.064Z","updated_at":"2026-05-03T19:31:37.300Z","avatar_url":"https://github.com/hitthecodelabs.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# Rasa Chatbot Project Guide\n\nThis guide provides a detailed walkthrough for setting up and developing a Rasa chatbot project using Visual Studio Code (VSCode).\n\n## Step 1: Install Visual Studio Code\n\n- Download and install VSCode from the official website: https://code.visualstudio.com/\n\n## Step 2: Install Python\n\n- Ensure Python 3.10 or newer is installed on your system. Download it from https://www.python.org/.\n\n## Step 3: Install Rasa\n\n1. Open VSCode and start a new terminal session (Terminal \u003e New Terminal).\n2. Create a project directory for your Rasa project files.\n3. Navigate to your project directory in the terminal using the `cd` command.\n4. Create a Python virtual environment for your project:\n   ```bash\n   python3 -m venv ./rasa_venv\n   ```\n   On Windows, you might use `python` instead of `python3`.\n5. Activate the virtual environment:\n   - On Windows:\n     ```\n     .\\rasa_venv\\Scripts\\activate\n     ```\n   - On macOS/Linux:\n     ```\n     source rasa_venv/bin/activate\n     ```\n6. Install Rasa within the virtual environment:\n   ```bash\n   pip install rasa==3.6.16\n   ```\n\n## Step 4: Initialize Your Rasa Project\n\n1. In the VSCode terminal, ensure you're in your project directory and your virtual environment is activated.\n2. Run the following command to create a new Rasa project:\n   ```bash\n   rasa init\n   ```\n3. Follow the prompts to create the initial project structure and train a simple bot.\n\n## Step 5: Explore and Modify Your Project\n\n- Open the project directory in VSCode (File \u003e Open Folder) to start editing your files.\n- Modify the generated files to develop your chatbot's training data and logic.\n\n## Step 6: Train Your Rasa Model\n\n- Retrain your model by running:\n  ```bash\n  rasa train\n  ```\n\n## Step 7: Test Your Bot in the Shell\n\n- Test your chatbot by running:\n  ```bash\n  rasa shell\n  ```\n\n## Step 8: Develop Custom Actions (Optional)\n\n- Edit `actions/actions.py` for custom actions.\n- Start the action server with `rasa run actions`.\n\n## Step 9: Use Version Control\n\n- Initialize a Git repository and commit your changes:\n  ```bash\n  git init\n  git add .\n  git commit -m \"Initial commit\"\n  ```\n\n## Step 10: Continuous Learning and Improvement\n\n- Continue developing your bot by adding more training data, refining the domain, and adding custom actions as needed.\n\n## Additional Tips\n\n- Consider installing the Python extension for VSCode.\n- Refer to the Rasa Documentation for more information: https://rasa.com/docs/\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhitthecodelabs%2Frasatalks","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhitthecodelabs%2Frasatalks","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhitthecodelabs%2Frasatalks/lists"}