ChatterBot 1.2.2__py3-none-any.whl → 1.2.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- chatterbot/__init__.py +1 -1
- chatterbot/__main__.py +15 -0
- chatterbot/chatterbot.py +52 -6
- chatterbot/comparisons.py +3 -13
- chatterbot/ext/sqlalchemy_app/models.py +2 -2
- chatterbot/logic/specific_response.py +48 -9
- chatterbot/logic/time_adapter.py +3 -7
- chatterbot/logic/unit_conversion.py +4 -3
- chatterbot/storage/__init__.py +2 -0
- chatterbot/storage/redis.py +390 -0
- chatterbot/storage/sql_storage.py +1 -1
- chatterbot/tagging.py +3 -7
- chatterbot/trainers.py +297 -109
- chatterbot/utils.py +16 -25
- chatterbot/vectorstores.py +74 -0
- {chatterbot-1.2.2.dist-info → chatterbot-1.2.4.dist-info}/METADATA +16 -20
- {chatterbot-1.2.2.dist-info → chatterbot-1.2.4.dist-info}/RECORD +20 -18
- {chatterbot-1.2.2.dist-info → chatterbot-1.2.4.dist-info}/WHEEL +1 -1
- {chatterbot-1.2.2.dist-info → chatterbot-1.2.4.dist-info/licenses}/LICENSE +0 -0
- {chatterbot-1.2.2.dist-info → chatterbot-1.2.4.dist-info}/top_level.txt +0 -0
@@ -1,27 +1,15 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: ChatterBot
|
3
|
-
Version: 1.2.
|
3
|
+
Version: 1.2.4
|
4
4
|
Summary: ChatterBot is a machine learning, conversational dialog engine
|
5
5
|
Author: Gunther Cox
|
6
|
-
License:
|
7
|
-
All rights reserved.
|
8
|
-
|
9
|
-
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
10
|
-
|
11
|
-
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
12
|
-
|
13
|
-
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
14
|
-
|
15
|
-
* Neither the name of ChatterBot nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
16
|
-
|
17
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
18
|
-
|
6
|
+
License-Expression: BSD-3-Clause
|
19
7
|
Project-URL: Documentation, https://docs.chatterbot.us
|
20
8
|
Project-URL: Repository, https://github.com/gunthercox/ChatterBot
|
9
|
+
Project-URL: Changelog, https://github.com/gunthercox/ChatterBot/releases
|
21
10
|
Keywords: ChatterBot,chatbot,chat,bot,natural language processing,nlp,artificial intelligence,ai
|
22
11
|
Classifier: Development Status :: 4 - Beta
|
23
12
|
Classifier: Intended Audience :: Developers
|
24
|
-
Classifier: License :: OSI Approved :: BSD License
|
25
13
|
Classifier: Operating System :: OS Independent
|
26
14
|
Classifier: Environment :: Console
|
27
15
|
Classifier: Environment :: Web Environment
|
@@ -40,7 +28,7 @@ Classifier: Programming Language :: Python
|
|
40
28
|
Classifier: Programming Language :: Python :: 3
|
41
29
|
Classifier: Programming Language :: Python :: 3.9
|
42
30
|
Classifier: Programming Language :: Python :: 3 :: Only
|
43
|
-
Requires-Python:
|
31
|
+
Requires-Python: <3.13,>=3.9
|
44
32
|
Description-Content-Type: text/markdown
|
45
33
|
License-File: LICENSE
|
46
34
|
Requires-Dist: mathparse<0.2,>=0.1
|
@@ -53,11 +41,20 @@ Requires-Dist: flake8; extra == "test"
|
|
53
41
|
Requires-Dist: coverage; extra == "test"
|
54
42
|
Requires-Dist: nose; extra == "test"
|
55
43
|
Requires-Dist: sphinx<8.2,>=5.3; extra == "test"
|
44
|
+
Requires-Dist: sphinx-sitemap>=2.6.0; extra == "test"
|
45
|
+
Requires-Dist: huggingface_hub; extra == "test"
|
56
46
|
Provides-Extra: dev
|
57
47
|
Requires-Dist: pint>=0.8.1; extra == "dev"
|
58
|
-
Requires-Dist: pymongo<4.12,>=4.11; extra == "dev"
|
59
48
|
Requires-Dist: pyyaml<7.0,>=6.0; extra == "dev"
|
60
49
|
Requires-Dist: chatterbot-corpus>=1.2.2; extra == "dev"
|
50
|
+
Provides-Extra: redis
|
51
|
+
Requires-Dist: redis[hiredis]; extra == "redis"
|
52
|
+
Requires-Dist: langchain-redis; extra == "redis"
|
53
|
+
Requires-Dist: langchain-huggingface; extra == "redis"
|
54
|
+
Requires-Dist: sentence-transformers; extra == "redis"
|
55
|
+
Provides-Extra: mongodb
|
56
|
+
Requires-Dist: pymongo<4.12,>=4.11; extra == "mongodb"
|
57
|
+
Dynamic: license-file
|
61
58
|
|
62
59
|

|
63
60
|
|
@@ -70,7 +67,6 @@ to be trained to speak any language.
|
|
70
67
|
|
71
68
|
[](https://pypi.python.org/pypi/chatterbot/)
|
72
69
|
[](https://www.python.org/downloads/release/python-360/)
|
73
|
-
[](https://docs.djangoproject.com/en/2.1/releases/2.0/)
|
74
70
|
[](https://coveralls.io/r/gunthercox/ChatterBot)
|
75
71
|
[](https://codeclimate.com/github/gunthercox/ChatterBot)
|
76
72
|
[](https://gitter.im/chatterbot/Lobby?utm_source=badge&utm_medium=badge&utm_content=badge)
|
@@ -161,7 +157,7 @@ See release notes for changes https://github.com/gunthercox/ChatterBot/releases
|
|
161
157
|
a new branch `my-pull-request`.
|
162
158
|
3. [Create a pull request](https://help.github.com/articles/creating-a-pull-request/).
|
163
159
|
4. Please follow the [Python style guide for PEP-8](https://www.python.org/dev/peps/pep-0008/).
|
164
|
-
5. Use the projects [built-in automated testing](https://docs.chatterbot.us/testing
|
160
|
+
5. Use the projects [built-in automated testing](https://docs.chatterbot.us/testing/).
|
165
161
|
to help make sure that your contribution is free from errors.
|
166
162
|
|
167
163
|
# License
|
@@ -1,8 +1,8 @@
|
|
1
|
-
chatterbot/__init__.py,sha256=
|
2
|
-
chatterbot/__main__.py,sha256=
|
1
|
+
chatterbot/__init__.py,sha256=Woq2bFnaAs8yTE2HVPsxXEyzFrXs1njsGJnJVgbYGvI,158
|
2
|
+
chatterbot/__main__.py,sha256=zvH4uxtGlGrP-ht_LkhX29duzjm3hRH800SDCq4YOwg,637
|
3
3
|
chatterbot/adapters.py,sha256=LJ_KqLpHKPdYAFpMGK63RVH4weV5X0Zh5uGyan6qdVU,878
|
4
|
-
chatterbot/chatterbot.py,sha256=
|
5
|
-
chatterbot/comparisons.py,sha256=
|
4
|
+
chatterbot/chatterbot.py,sha256=BW_XQK78iOvc0fZ8EsEglNUdjyRE2lxUI_sP-fa4gCc,12505
|
5
|
+
chatterbot/comparisons.py,sha256=8kkjW-lhS-57XSUlQI5B-dAdJO-CvkIirWLBKtbe4gw,6187
|
6
6
|
chatterbot/components.py,sha256=ld3Xam8olBClvE5QqcFYggE7Q7tODCFek7BO7lhfyeU,1782
|
7
7
|
chatterbot/constants.py,sha256=c_KPQKc82CHX6H3maeyTYqWatx6j-N-8HJhmejoVi60,1875
|
8
8
|
chatterbot/conversation.py,sha256=Y-WOxPN7I3igRyAEe5py1sfS6JIYPdbwjVlY3kM8Ys8,3175
|
@@ -14,9 +14,10 @@ chatterbot/parsing.py,sha256=vS-w70cMkjq4YEpDOv_pXWhAI6Zj06WYDAcMDhYDj0M,23174
|
|
14
14
|
chatterbot/preprocessors.py,sha256=aI4v987dZc7GOKhO43i0i73EX748hehYSpzikFHpEXs,1271
|
15
15
|
chatterbot/response_selection.py,sha256=aYeZ54jpGIcQnI-1-TDcua_f1p3PiM5_iMg4hF5ZaIU,2951
|
16
16
|
chatterbot/search.py,sha256=FTwwON2eKPWqoc5uoKh4AUmuXDCqyfMcMcXB4wijpxg,4910
|
17
|
-
chatterbot/tagging.py,sha256=
|
18
|
-
chatterbot/trainers.py,sha256=
|
19
|
-
chatterbot/utils.py,sha256=
|
17
|
+
chatterbot/tagging.py,sha256=czcI2g18vILujphkjvobRyEewJU8-QjS7QRzY-hCZ4o,2429
|
18
|
+
chatterbot/trainers.py,sha256=9mxi1_UmtiuXuEzpn4uztnV8PObD0Xt0PrAbTZ6oyt0,19294
|
19
|
+
chatterbot/utils.py,sha256=tGmUt-KYYylD2fiG_oq_XxhGbAHukzwudZ_6hNuraIA,2944
|
20
|
+
chatterbot/vectorstores.py,sha256=-S1NB8PrZzoFIu95n2W7N4UaXuCUpyDUXIGYFebjv08,2056
|
20
21
|
chatterbot/ext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
21
22
|
chatterbot/ext/django_chatterbot/__init__.py,sha256=iWzmBzpAsYwkwi1faxAPFY9L1bbL97RgVXK2uqULIMc,92
|
22
23
|
chatterbot/ext/django_chatterbot/abstract_models.py,sha256=PkuBGS0uv2toL3jGE1U6HJLCLXoKwpRNohm9JbVT_y4,3303
|
@@ -46,21 +47,22 @@ chatterbot/ext/django_chatterbot/migrations/0018_text_max_length.py,sha256=508Tx
|
|
46
47
|
chatterbot/ext/django_chatterbot/migrations/0019_alter_statement_id_alter_tag_id_and_more.py,sha256=rsVxwDFMQ-cU1KMhjDq9Wcl_6gTPKc_dc3p-gv_R7v8,999
|
47
48
|
chatterbot/ext/django_chatterbot/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
48
49
|
chatterbot/ext/sqlalchemy_app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
49
|
-
chatterbot/ext/sqlalchemy_app/models.py,sha256=
|
50
|
+
chatterbot/ext/sqlalchemy_app/models.py,sha256=ZQ-R_5rA-f1agaqYGUQhuuO7zx__BvTDUvJo5R7ZrDY,2492
|
50
51
|
chatterbot/logic/__init__.py,sha256=28-5swBCPfSVMl8xB5C8frOKZ2oj28rQfenbd9E4r-4,531
|
51
52
|
chatterbot/logic/best_match.py,sha256=8TNW0uZ_Uq-XPfaZUMUZDVH6KzDT65j59xblxQBv-dQ,4820
|
52
53
|
chatterbot/logic/logic_adapter.py,sha256=5kNEirh5fiF5hhSMFXD7bIkKwXHmrSsSS4qDm-6xry0,4694
|
53
54
|
chatterbot/logic/mathematical_evaluation.py,sha256=GPDKUwNFajERof2R-MkPGi2jJRP-rKAGm_f0V9JHDHE,2282
|
54
|
-
chatterbot/logic/specific_response.py,sha256=
|
55
|
-
chatterbot/logic/time_adapter.py,sha256=
|
56
|
-
chatterbot/logic/unit_conversion.py,sha256
|
57
|
-
chatterbot/storage/__init__.py,sha256=
|
55
|
+
chatterbot/logic/specific_response.py,sha256=akWHkfe0AjzlCUvjs_PbKFNkX4SZhu_tzY45xCRXoo0,2236
|
56
|
+
chatterbot/logic/time_adapter.py,sha256=1PT6tWtGauZLRH02-Xlh2LublDpu_3hnCqHBqNGM9yg,2256
|
57
|
+
chatterbot/logic/unit_conversion.py,sha256=-ENMLqZqtZx0riUi0guda2oJECST0M7pZG4cSIv3ieM,5898
|
58
|
+
chatterbot/storage/__init__.py,sha256=ADw0WQe0YKr1UIDQLaxwf0mHDnuKW_CSzgz11K4TM-4,465
|
58
59
|
chatterbot/storage/django_storage.py,sha256=S5S4GipD7FyNJy4RWu5-S8sLPuSJIObwTtqTpnJu-ok,6159
|
59
60
|
chatterbot/storage/mongodb.py,sha256=Ozvdvcjb3LGZxcvbSQGzwP9VloYQbmsa2FaKunFpMyU,7934
|
60
|
-
chatterbot/storage/
|
61
|
+
chatterbot/storage/redis.py,sha256=FKROrzZ-7WXZ8ZoK0dKmTDdS45TxL04XOSeu0p3Jrak,12675
|
62
|
+
chatterbot/storage/sql_storage.py,sha256=dAMLByFKQgbiTFoBUtKDeqadYRdwVO5fz1OONTcVCH4,13076
|
61
63
|
chatterbot/storage/storage_adapter.py,sha256=fvyb-qNiB0HMJ0siVMCWUIY--6d-C47N1_kKZVFZAv4,6110
|
62
|
-
chatterbot-1.2.
|
63
|
-
chatterbot-1.2.
|
64
|
-
chatterbot-1.2.
|
65
|
-
chatterbot-1.2.
|
66
|
-
chatterbot-1.2.
|
64
|
+
chatterbot-1.2.4.dist-info/licenses/LICENSE,sha256=5b04U8mi0wp5gJMYlKi49EalnD9Q2nwY_6UEI_Avgu4,1476
|
65
|
+
chatterbot-1.2.4.dist-info/METADATA,sha256=lrGa5gxvPrNRh6fCKqr7zPvRp_qmY293ijj0ODW4uZM,7049
|
66
|
+
chatterbot-1.2.4.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
67
|
+
chatterbot-1.2.4.dist-info/top_level.txt,sha256=W2TzAbAJ-eBXTIKZZhVlkrh87msJNmBQpyhkrHqjSrE,11
|
68
|
+
chatterbot-1.2.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|