|
13 | 13 | } |
14 | 14 | ], |
15 | 15 | "assigned_files": [ |
16 | | - "chatterbot/__init__.py", |
17 | | - "chatterbot/adapters.py", |
18 | 16 | "chatterbot/conversation.py", |
19 | 17 | "chatterbot/components.py", |
20 | 18 | "chatterbot/chatterbot.py" |
|
47 | 45 | "assigned_files": [ |
48 | 46 | "chatterbot/search.py", |
49 | 47 | "chatterbot/response_selection.py", |
50 | | - "chatterbot/filters.py", |
51 | 48 | "chatterbot/comparisons.py", |
52 | 49 | "chatterbot/logic/unit_conversion.py", |
53 | | - "chatterbot/logic/__init__.py", |
54 | 50 | "chatterbot/logic/mathematical_evaluation.py", |
55 | 51 | "chatterbot/logic/logic_adapter.py", |
56 | 52 | "chatterbot/logic/best_match.py", |
|
86 | 82 | "chatterbot/corpus.py", |
87 | 83 | "chatterbot/vectorstores.py", |
88 | 84 | "chatterbot/trainers.py", |
| 85 | + "chatterbot/ext/django_chatterbot/__init__.py", |
| 86 | + "chatterbot/ext/django_chatterbot/apps.py", |
| 87 | + "chatterbot/ext/django_chatterbot/models.py", |
| 88 | + "chatterbot/ext/django_chatterbot/abstract_models.py", |
| 89 | + "chatterbot/ext/django_chatterbot/settings.py", |
| 90 | + "chatterbot/ext/django_chatterbot/model_admin.py", |
| 91 | + "chatterbot/ext/django_chatterbot/admin.py", |
| 92 | + "chatterbot/ext/django_chatterbot/migrations/0014_remove_statement_extra_data.py", |
| 93 | + "chatterbot/ext/django_chatterbot/migrations/__init__.py", |
| 94 | + "chatterbot/ext/django_chatterbot/migrations/0005_statement_created_at.py", |
| 95 | + "chatterbot/ext/django_chatterbot/migrations/0011_blank_extra_data.py", |
| 96 | + "chatterbot/ext/django_chatterbot/migrations/0016_statement_stemmed_text.py", |
| 97 | + "chatterbot/ext/django_chatterbot/migrations/0020_alter_statement_conversation_and_more.py", |
| 98 | + "chatterbot/ext/django_chatterbot/migrations/0019_alter_statement_id_alter_tag_id_and_more.py", |
| 99 | + "chatterbot/ext/django_chatterbot/migrations/0018_text_max_length.py", |
| 100 | + "chatterbot/ext/django_chatterbot/migrations/0002_statement_extra_data.py", |
| 101 | + "chatterbot/ext/django_chatterbot/migrations/0003_change_occurrence_default.py", |
| 102 | + "chatterbot/ext/django_chatterbot/migrations/0001_initial.py", |
| 103 | + "chatterbot/ext/django_chatterbot/migrations/0010_statement_text.py", |
| 104 | + "chatterbot/ext/django_chatterbot/migrations/0004_rename_in_response_to.py", |
| 105 | + "chatterbot/ext/django_chatterbot/migrations/0012_statement_created_at.py", |
| 106 | + "chatterbot/ext/django_chatterbot/migrations/0009_tags.py", |
| 107 | + "chatterbot/ext/django_chatterbot/migrations/0008_update_conversations.py", |
| 108 | + "chatterbot/ext/django_chatterbot/migrations/0015_statement_persona.py", |
| 109 | + "chatterbot/ext/django_chatterbot/migrations/0013_change_conversations.py", |
| 110 | + "chatterbot/ext/django_chatterbot/migrations/0006_create_conversation.py", |
| 111 | + "chatterbot/ext/django_chatterbot/migrations/0007_response_created_at.py", |
| 112 | + "chatterbot/ext/django_chatterbot/migrations/0017_tags_unique.py", |
| 113 | + "chatterbot/ext/sqlalchemy_app/__init__.py", |
| 114 | + "chatterbot/ext/sqlalchemy_app/models.py", |
89 | 115 | "chatterbot/storage/storage_adapter.py", |
90 | | - "chatterbot/storage/__init__.py", |
91 | 116 | "chatterbot/storage/mongodb.py", |
92 | 117 | "chatterbot/storage/redis.py", |
93 | 118 | "chatterbot/storage/sql_storage.py", |
|
116 | 141 | "chatterbot/tagging.py", |
117 | 142 | "chatterbot/parsing.py", |
118 | 143 | "chatterbot/preprocessors.py", |
| 144 | + "chatterbot/filters.py", |
119 | 145 | "chatterbot/languages.py" |
120 | 146 | ], |
121 | 147 | "can_expand": true |
|
172 | 198 | "docs/conf.py", |
173 | 199 | "docs/_ext/github.py", |
174 | 200 | "docs/_ext/canonical.py", |
| 201 | + "chatterbot/__init__.py", |
| 202 | + "chatterbot/adapters.py", |
175 | 203 | "chatterbot/__main__.py", |
176 | 204 | "chatterbot/constants.py", |
177 | 205 | "chatterbot/utils.py", |
178 | 206 | "chatterbot/exceptions.py", |
179 | 207 | "chatterbot/ext/__init__.py", |
180 | | - "chatterbot/ext/django_chatterbot/__init__.py", |
181 | | - "chatterbot/ext/django_chatterbot/apps.py", |
182 | | - "chatterbot/ext/django_chatterbot/models.py", |
183 | | - "chatterbot/ext/django_chatterbot/abstract_models.py", |
184 | | - "chatterbot/ext/django_chatterbot/settings.py", |
185 | | - "chatterbot/ext/django_chatterbot/model_admin.py", |
186 | | - "chatterbot/ext/django_chatterbot/admin.py", |
187 | | - "chatterbot/ext/django_chatterbot/migrations/0014_remove_statement_extra_data.py", |
188 | | - "chatterbot/ext/django_chatterbot/migrations/__init__.py", |
189 | | - "chatterbot/ext/django_chatterbot/migrations/0005_statement_created_at.py", |
190 | | - "chatterbot/ext/django_chatterbot/migrations/0011_blank_extra_data.py", |
191 | | - "chatterbot/ext/django_chatterbot/migrations/0016_statement_stemmed_text.py", |
192 | | - "chatterbot/ext/django_chatterbot/migrations/0020_alter_statement_conversation_and_more.py", |
193 | | - "chatterbot/ext/django_chatterbot/migrations/0019_alter_statement_id_alter_tag_id_and_more.py", |
194 | | - "chatterbot/ext/django_chatterbot/migrations/0018_text_max_length.py", |
195 | | - "chatterbot/ext/django_chatterbot/migrations/0002_statement_extra_data.py", |
196 | | - "chatterbot/ext/django_chatterbot/migrations/0003_change_occurrence_default.py", |
197 | | - "chatterbot/ext/django_chatterbot/migrations/0001_initial.py", |
198 | | - "chatterbot/ext/django_chatterbot/migrations/0010_statement_text.py", |
199 | | - "chatterbot/ext/django_chatterbot/migrations/0004_rename_in_response_to.py", |
200 | | - "chatterbot/ext/django_chatterbot/migrations/0012_statement_created_at.py", |
201 | | - "chatterbot/ext/django_chatterbot/migrations/0009_tags.py", |
202 | | - "chatterbot/ext/django_chatterbot/migrations/0008_update_conversations.py", |
203 | | - "chatterbot/ext/django_chatterbot/migrations/0015_statement_persona.py", |
204 | | - "chatterbot/ext/django_chatterbot/migrations/0013_change_conversations.py", |
205 | | - "chatterbot/ext/django_chatterbot/migrations/0006_create_conversation.py", |
206 | | - "chatterbot/ext/django_chatterbot/migrations/0007_response_created_at.py", |
207 | | - "chatterbot/ext/django_chatterbot/migrations/0017_tags_unique.py", |
208 | | - "chatterbot/ext/sqlalchemy_app/__init__.py", |
209 | | - "chatterbot/ext/sqlalchemy_app/models.py" |
| 208 | + "chatterbot/storage/__init__.py", |
| 209 | + "chatterbot/logic/__init__.py" |
210 | 210 | ], |
211 | 211 | "can_expand": false |
212 | 212 | }, |
|
245 | 245 | "assigned_files": [], |
246 | 246 | "can_expand": false |
247 | 247 | }, |
| 248 | + { |
| 249 | + "name": "Unclassified", |
| 250 | + "description": "Component for all unclassified files and utility functions (Utility functions/External Libraries/Dependencies)", |
| 251 | + "referenced_source_code": [], |
| 252 | + "assigned_files": [], |
| 253 | + "can_expand": false |
| 254 | + }, |
248 | 255 | { |
249 | 256 | "name": "Unclassified", |
250 | 257 | "description": "Component for all unclassified files and utility functions (Utility functions/External Libraries/Dependencies)", |
|
0 commit comments