Metadata-Version: 2.1
Name: chatbot_webraft
Version: 0.0.1
Summary: A package for building chatbots easily without needing of any high system resources.
Author-email: Webraft <team@webraft.in>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

A Module to build chatbots easily (by webraft)

Basic Usage:
 ```
 #Import library
from chatbot_webraft import chatbot

#set model name
model = "my-model" 

#create model
chatbot.create_model(model)

#load CSV dataset , Mention input column (question) and label column (answer)
chatbot.dataset("try.csv",'context','response',model) 

#add more data to model (Not saved , only in memory). Data that you may want to add later.
chatbot.add_data(model,["hey","what about you"],["hello bro","im fine ,you?"]) 

#run in loop
while True:
  prompt = input("You: ")    
  #run model and parse input
  print("Bot: ",chatbot.model_run(prompt,model)) 

 ```
 