معرفی شرکت ها


aichatbot-0.0.5


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Python library for building custom AI Chatbot with just one line of code.
ویژگی مقدار
سیستم عامل -
نام فایل aichatbot-0.0.5
نام aichatbot
نسخه کتابخانه 0.0.5
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Abhishek Manilal Gupta
ایمیل نویسنده abhig0209@gmail.com
آدرس صفحه اصلی https://github.com/Elysian01/AI-Chatbot
آدرس اینترنتی https://pypi.org/project/aichatbot/
مجوز MIT
# AI-Chatbot 🤖 ### Python library for building custom AI Chatbot with just one line of code. ## Get Started Install the package ``` pip install aichatbot ``` Load the module ```python import aichatbot as bot ``` **Create the `intents file` by following format** ```json { "intents": [ { "tag": "tag name", "patterns": ["example-1 of user query", "example-2 of user query", "example-3"], "responses": ["bot response-1", "bot response-2", "bot response-3"] } ] } ``` The `patterns` contains a list of example `expected user query`, which user will enter and `responses` contains the list of `bot response`. Whenever a user inputs a query, bot will find the closest match with the `patterns`, and then select a random response from the list of `responses` specified under that pattern name. **Example** ```json { "intents": [ { "tag": "greeting", "patterns": ["Hi", "How are you", "Is anyone there?", "Hello", "Good day"], "responses": ["Hello, thanks for visiting", "Good to see you again", "Hi there, how can I help?"] },{ "tag": "goodbye", "patterns": ["Bye", "See you later", "Goodbye"], "responses": ["See you later, thanks for visiting", "Have a nice day", "Bye! Come back again soon."] } ] } ``` **Create the model** ```python filenames = { "intents": "./data/basic_intents.json", "dir": "dumps" } bot_model = bot.Create(filenames, technique="bow") ``` `intents` : Path to your intents file. <br> `dir`: Specify the directory where you want to save the bot model.<br> `technique`: Choose among [ bow | lstm | bert ]<br> That's it 😊, **Start your conversation** ```python bot.start(bot_model) ``` Optional Parameter:<br> `end_conversation` : Contains strings to stop the chatbot.<br> `end_response` : Output Message when bot quits Example: ```python bot.start(bot_model, end_conversation=["/stop", "quit"], end_response="Thankyou for your time :)") ```


نیازمندی

مقدار نام
==0.12.0 absl-py
==0.5.0 aiofiles
==2.2.5 astroid
==1.6.3 astunparse
==3.0.1 async-timeout
==1.3.0 atomicwrites
==19.3.0 attrs
==1.5.6 autopep8
==4.2.1 cachetools
==2020.12.5 certifi
==4.0.0 chardet
==7.1.2 click
==1.3.0 cloudpickle
==2.2.0 colorclass
==10.0 coloredlogs
==1.0.2 colorhash
==1.1.9 comtypes
==4.4.2 decorator
==1.16.0 dnspython
==0.6.2 docopt
==0.15.2 docutils
==0.3.3 gast
==1.5.0 gevent
==1.28.1 google-auth
==0.4.4 google-auth-oauthlib
==0.2.0 google-pasta
==1.37.0 grpcio
==0.8.1 h11
==3.2.0 h2
==2.10.0 h5py
==3.0.0 hpack
==2020.9.15 hstspreload
==0.18.1 httplib2
==0.1.1 httptools
==8.2 humanfriendly
==5.2.0 hyperframe
==2.10 idna
==3.10.1 importlib-metadata
==0.2.0 ipython-genutils
==4.3.21 isort
==0.10.0 jmespath
==1.0.1 joblib
==4.6.3 jupyter-core
==1.1.2 Keras-Preprocessing
==1.4.1 lazy-object-proxy
==3.3.4 Markdown
==0.6.1 mccabe
==8.0.2 more-itertools
==4.7.6 multidict
==3.6.1 nltk
==1.18.5 numpy
==4.1.3 oauth2client
==3.1.0 oauthlib
==3.3.0 opt-einsum
==0.7.5 pickleshare
==0.13.1 pluggy
==3.15.8 protobuf
==2.8.6 psycopg2-binary
==1.8.1 py
==0.4.8 pyasn1
==0.2.8 pyasn1-modules
==2.7.0 pycodestyle
==1.7.0 pykwalify
==2.3.1 pylint
==3.8.0 pymongo
==223 pypiwin32
==0.9.7 python-crfsuite
==2.90 pyttsx3
==227 pywin32
==2020.6.8 regex
==2.25.1 requests
==1.3.0 requests-oauthlib
==0.9.1 requests-toolbelt
==1.4.0 rfc3986
==4.7.2 rsa
==0.16.12 ruamel.yaml
==0.3.3 s3transfer
==19.12.2 sanic
==0.10.0.post3 Sanic-Cors
==0.9.3 Sanic-Plugins-Framework
==1.15.0 six
==0.3.6 sklearn-crfsuite
==2.8.2 slackclient
==1.1.0 sniffio
==3.8.1 SpeechRecognition
==0.8.7 tabulate
==2.4.1 tensorboard
==1.8.0 tensorboard-plugin-wit
==2.3.1 tensorflow
==2.3.0 tensorflow-estimator
==1.1.0 termcolor
==0.10.2 toml
==4.45.0 tqdm
==1.4.0 typed-ast
==3.7.4.3 typing-extensions
==2.1 tzlocal
==1.26.4 urllib3
==8.1 websockets
==1.0.1 Werkzeug
==0.2 wincertstore
==1.12.1 wrapt
==1.5.1 yarl
==3.4.1 zipp


نحوه نصب


نصب پکیج whl aichatbot-0.0.5:

    pip install aichatbot-0.0.5.whl


نصب پکیج tar.gz aichatbot-0.0.5:

    pip install aichatbot-0.0.5.tar.gz