{"id":15288167,"url":"https://github.com/deepraj1729/tchatbot","last_synced_at":"2025-04-13T07:35:33.493Z","repository":{"id":37645538,"uuid":"274070365","full_name":"deepraj1729/TChatBot","owner":"deepraj1729","description":"A ChatBot framework to create customizable all purpose Chatbots using NLP, Tensorflow, Speech Recognition ","archived":false,"fork":false,"pushed_at":"2023-03-24T21:54:24.000Z","size":3160,"stargazers_count":19,"open_issues_count":2,"forks_count":1,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-02-16T19:39:55.907Z","etag":null,"topics":["artificial-intelligence","chatbot-framework","conda","deep-learning","framework","git","github","machine-learning","neural-networks","nlp","nltk","numpy","pip","pypi","python3","sklearn","speech-recognition","tensorflow","virtual-environment"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/TChatBot","language":"Python","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/deepraj1729.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":["deepraj1729"]}},"created_at":"2020-06-22T07:34:44.000Z","updated_at":"2024-08-16T14:03:40.000Z","dependencies_parsed_at":"2023-12-15T20:18:26.587Z","dependency_job_id":null,"html_url":"https://github.com/deepraj1729/TChatBot","commit_stats":{"total_commits":32,"total_committers":5,"mean_commits":6.4,"dds":0.15625,"last_synced_commit":"c5433b2a1a77739f4f78b2065176f90eab62d9f5"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deepraj1729%2FTChatBot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deepraj1729%2FTChatBot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deepraj1729%2FTChatBot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deepraj1729%2FTChatBot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/deepraj1729","download_url":"https://codeload.github.com/deepraj1729/TChatBot/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240260762,"owners_count":19773378,"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":["artificial-intelligence","chatbot-framework","conda","deep-learning","framework","git","github","machine-learning","neural-networks","nlp","nltk","numpy","pip","pypi","python3","sklearn","speech-recognition","tensorflow","virtual-environment"],"created_at":"2024-09-30T15:44:31.627Z","updated_at":"2025-02-23T02:30:40.857Z","avatar_url":"https://github.com/deepraj1729.png","language":"Python","readme":"[![TChatBot](https://img.shields.io/badge/TChatBot-v0.1.0-blue)](https://pypi.org/project/TChatBot/0.1.0/)  [![license](https://img.shields.io/badge/License-MIT-yellow)](https://github.com/deepraj1729/TChatBot/blob/master/LICENSE) [![dependencies](https://img.shields.io/badge/dependencies-packages-orange)](https://github.com/deepraj1729/TChatBot/blob/master/requirements.txt)\n[![pull](https://img.shields.io/badge/pull--requests-requests-green)](https://github.com/deepraj1729/TChatBot/pulls) [![issues](https://img.shields.io/badge/issues-issues-red)](https://github.com/deepraj1729/TChatBot/issues) ![python](https://img.shields.io/badge/python-3.5%20%7C%203.6%20%7C%203.7-blue)\n\n![logo](assets/final-logo.png)\nA ChatBot framework to make customizable all purpose Chatbots using NLP, Tensorflow, Speech Recognition \n\n# Deployment Architecture:\n![arch](assets/architecture.png)\n# Updates:\n### 1. Released to `pypi` with stable release.\n### 2. Will be updated to `conda` soon.\n\n# Basic Requirements: \n- RAM \u003e 4GB (For training the model)\n- Storage Space \u003e 200MB\n- GPU RAM \u003e=4 GB (optional)\n- Python \u003e= 3.5\n\n# Installation:\n\n(a). Install using `pip` \n\n(b). Clone the repository (dev testing)\n\n## (a) Install Using `pip`:\n\n# Pre-Requisites:\n1. An Empty folder\n2. A virtual environment (using normal python or conda python)\n\n\n## Setting up the Pre-Requisites:\n### 1: Create an empty folder say `Demo`.\n\n### 2: Open the folder and open terminal from that folder location.\n\n### 3: Create Virtual Environment\n- Step 1: Either Using `virtualenv` (strictly for non-conda users, optional for conda users)\n- Step 2: Or Using conda (for conda users only)\n\n## Choose any one of the above 2 steps based on conda or non-conda users\n### 1. Install virtualenv using `pip` (for both non-conda and conda users)\n\n        pip install virtualenv==20.0.14\n        \n### (1.a) Run the command to create virtual environment: \n\n        virtualenv .\n\n### (1.b) Activate virtual environment by running the command:\n        \n        .\\Scripts\\activate\n\n### (1.c) `(Demo)` in the left of terminal indicates that the environment is activated\n\n### 2. Create virtual environment (for conda users only), skip if Step 1 is done: \n\n        conda create -n TChatBot\n\n### (2.a) Activate virtual environment by running the command:\n\n        conda activate TChatBot\n\n### (2.b) `(TChatBot)` in the left of terminal shows that the environment is activated\n                 \n\n## Install the latest `TChatBot` package using `pip`:\n        \n        pip install TChatBot\n        \n### Congrats, You installed all the required dependencies :) \n\n# Usage:\n### (Must run within the virtual environment):\n\n### Chat with TChatBot:\n\n        tchatbot -chat\n\n### Train the Chatbot:\n\n        tchatbot -train\n\n### Create Custom Dataset commandline\n\n        tchatbot -create\n\n### Check Current classes trained\n\n        tchatbot -classes\n\n### Check Model Pipeline Configurations\n\n        tchatbot --config\n\n### Check Version:\n        \n        tchatbot -v\n\n### For any help/guidance regarding commands:\n\n        tchatbot -h\n\n\n# Installation for developers \n### (Must run within the virtual environment):\n\n## (b): By Clonining this Repository ,following the steps:\n\n### 1. Setup the Pre-Requisites as given above (without installing the `TChatBot` package)\n\n### 2. Once done, clone the repository inside the `Demo` folder (with activated virtual environment)\n#### a. Using HTTPS:\n\n        git clone https://github.com/deepraj1729/TChatBot.git\n\n#### b. Using SSH:\n\n        git clone git@github.com:deepraj1729/TChatBot.git\n\n### 3. Navigate to the `TChatBot` folder (Parent folder) command-line:\n        \n        cd TChatBot\n\n### 4. Install the requirements from the activated environment:\n\n        pip install -r requirements.txt \n\n## Congrats, You installed all the required dependencies :) \n\n\n# Usage (for Developers or Contributors):\n### (inside the virtual environment)\n\n### a. Chat with TChatBot:\n\n        python main.py -chat\n\n### b. Train the TChatbot:\n\n        python main.py -train\n\n### c. Create Custom Dataset command-line for retraining the Bot\n\n        python main.py -create\n    \n### Check Current classes trained\n\n        python main.py -classes\n\n### Check Model Pipeline Configurations\n\n        python main.py --config\n\n### Check Version:\n        \n        python main.py -v\n\n### For any help regarding commands:\n\n        python main.py -h\n","funding_links":["https://github.com/sponsors/deepraj1729"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeepraj1729%2Ftchatbot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdeepraj1729%2Ftchatbot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeepraj1729%2Ftchatbot/lists"}