|
13 | 13 | } |
14 | 14 | ], |
15 | 15 | "assigned_files": [ |
16 | | - "examples/basic_example.py", |
17 | | - "examples/terminal_example.py", |
18 | | - "examples/learning_feedback_example.py", |
| 16 | + "chatterbot/__init__.py", |
| 17 | + "chatterbot/__main__.py", |
19 | 18 | "chatterbot/conversation.py", |
20 | 19 | "chatterbot/components.py", |
21 | 20 | "chatterbot/chatterbot.py" |
|
46 | 45 | } |
47 | 46 | ], |
48 | 47 | "assigned_files": [ |
49 | | - "examples/specific_response_example.py", |
50 | | - "examples/math_and_time.py", |
51 | | - "examples/convert_units.py", |
52 | | - "examples/default_response_example.py", |
53 | 48 | "chatterbot/search.py", |
54 | 49 | "chatterbot/adapters.py", |
55 | 50 | "chatterbot/response_selection.py", |
56 | 51 | "chatterbot/tagging.py", |
57 | | - "chatterbot/vectorstores.py", |
| 52 | + "chatterbot/filters.py", |
58 | 53 | "chatterbot/comparisons.py", |
59 | 54 | "chatterbot/logic/unit_conversion.py", |
| 55 | + "chatterbot/logic/__init__.py", |
60 | 56 | "chatterbot/logic/mathematical_evaluation.py", |
61 | 57 | "chatterbot/logic/logic_adapter.py", |
62 | 58 | "chatterbot/logic/best_match.py", |
|
89 | 85 | } |
90 | 86 | ], |
91 | 87 | "assigned_files": [ |
92 | | - "examples/training_example_chatterbot_corpus.py", |
93 | | - "examples/terminal_mongo_example.py", |
94 | | - "examples/tagged_dataset_example.py", |
95 | | - "examples/memory_sql_example.py", |
96 | | - "examples/training_example_list_data.py", |
97 | | - "examples/training_example_ubuntu_corpus.py", |
98 | | - "examples/export_example.py", |
99 | | - "examples/django_example/django_example/management/commands/train.py", |
100 | 88 | "chatterbot/corpus.py", |
| 89 | + "chatterbot/vectorstores.py", |
101 | 90 | "chatterbot/trainers.py", |
| 91 | + "chatterbot/ext/django_chatterbot/__init__.py", |
| 92 | + "chatterbot/ext/django_chatterbot/apps.py", |
102 | 93 | "chatterbot/ext/django_chatterbot/models.py", |
103 | 94 | "chatterbot/ext/django_chatterbot/abstract_models.py", |
| 95 | + "chatterbot/ext/django_chatterbot/settings.py", |
104 | 96 | "chatterbot/ext/django_chatterbot/model_admin.py", |
105 | 97 | "chatterbot/ext/django_chatterbot/admin.py", |
106 | 98 | "chatterbot/ext/django_chatterbot/migrations/0014_remove_statement_extra_data.py", |
|
124 | 116 | "chatterbot/ext/django_chatterbot/migrations/0006_create_conversation.py", |
125 | 117 | "chatterbot/ext/django_chatterbot/migrations/0007_response_created_at.py", |
126 | 118 | "chatterbot/ext/django_chatterbot/migrations/0017_tags_unique.py", |
| 119 | + "chatterbot/ext/sqlalchemy_app/__init__.py", |
127 | 120 | "chatterbot/ext/sqlalchemy_app/models.py", |
128 | 121 | "chatterbot/storage/storage_adapter.py", |
| 122 | + "chatterbot/storage/__init__.py", |
129 | 123 | "chatterbot/storage/mongodb.py", |
130 | 124 | "chatterbot/storage/redis.py", |
131 | 125 | "chatterbot/storage/sql_storage.py", |
|
153 | 147 | "assigned_files": [ |
154 | 148 | "chatterbot/parsing.py", |
155 | 149 | "chatterbot/preprocessors.py", |
156 | | - "chatterbot/filters.py", |
157 | 150 | "chatterbot/languages.py" |
158 | 151 | ], |
159 | 152 | "can_expand": true |
|
170 | 163 | } |
171 | 164 | ], |
172 | 165 | "assigned_files": [ |
173 | | - "examples/openai_example.py", |
174 | | - "examples/ollama_example.py", |
175 | 166 | "chatterbot/llm.py" |
176 | 167 | ], |
177 | 168 | "can_expand": true |
|
181 | 172 | "description": "Component for all unclassified files and utility functions (Utility functions/External Libraries/Dependencies)", |
182 | 173 | "referenced_source_code": [], |
183 | 174 | "assigned_files": [ |
| 175 | + "examples/training_example_chatterbot_corpus.py", |
184 | 176 | "examples/__init__.py", |
| 177 | + "examples/basic_example.py", |
| 178 | + "examples/terminal_example.py", |
| 179 | + "examples/terminal_mongo_example.py", |
| 180 | + "examples/specific_response_example.py", |
| 181 | + "examples/tagged_dataset_example.py", |
| 182 | + "examples/memory_sql_example.py", |
| 183 | + "examples/training_example_list_data.py", |
| 184 | + "examples/math_and_time.py", |
| 185 | + "examples/openai_example.py", |
| 186 | + "examples/training_example_ubuntu_corpus.py", |
| 187 | + "examples/convert_units.py", |
| 188 | + "examples/ollama_example.py", |
| 189 | + "examples/export_example.py", |
| 190 | + "examples/default_response_example.py", |
185 | 191 | "examples/tkinter_gui.py", |
| 192 | + "examples/learning_feedback_example.py", |
186 | 193 | "examples/django_example/manage.py", |
187 | 194 | "examples/django_example/django_example/asgi.py", |
188 | 195 | "examples/django_example/django_example/__init__.py", |
|
192 | 199 | "examples/django_example/django_example/urls.py", |
193 | 200 | "examples/django_example/django_example/management/__init__.py", |
194 | 201 | "examples/django_example/django_example/management/commands/__init__.py", |
| 202 | + "examples/django_example/django_example/management/commands/train.py", |
195 | 203 | "docs/conf.py", |
196 | 204 | "docs/_ext/github.py", |
197 | 205 | "docs/_ext/canonical.py", |
198 | | - "chatterbot/__init__.py", |
199 | | - "chatterbot/__main__.py", |
200 | 206 | "chatterbot/constants.py", |
201 | 207 | "chatterbot/utils.py", |
202 | 208 | "chatterbot/exceptions.py", |
203 | | - "chatterbot/ext/__init__.py", |
204 | | - "chatterbot/ext/django_chatterbot/__init__.py", |
205 | | - "chatterbot/ext/django_chatterbot/apps.py", |
206 | | - "chatterbot/ext/django_chatterbot/settings.py", |
207 | | - "chatterbot/ext/sqlalchemy_app/__init__.py", |
208 | | - "chatterbot/storage/__init__.py", |
209 | | - "chatterbot/logic/__init__.py" |
| 209 | + "chatterbot/ext/__init__.py" |
210 | 210 | ], |
211 | 211 | "can_expand": false |
212 | 212 | }, |
|
231 | 231 | "assigned_files": [], |
232 | 232 | "can_expand": false |
233 | 233 | }, |
| 234 | + { |
| 235 | + "name": "Unclassified", |
| 236 | + "description": "Component for all unclassified files and utility functions (Utility functions/External Libraries/Dependencies)", |
| 237 | + "referenced_source_code": [], |
| 238 | + "assigned_files": [], |
| 239 | + "can_expand": false |
| 240 | + }, |
234 | 241 | { |
235 | 242 | "name": "Unclassified", |
236 | 243 | "description": "Component for all unclassified files and utility functions (Utility functions/External Libraries/Dependencies)", |
|
0 commit comments