|
13 | 13 | } |
14 | 14 | ], |
15 | 15 | "assigned_files": [ |
| 16 | + "examples/basic_example.py", |
| 17 | + "examples/terminal_example.py", |
| 18 | + "examples/terminal_mongo_example.py", |
| 19 | + "examples/learning_feedback_example.py", |
| 20 | + "examples/django_example/django_example/views.py", |
16 | 21 | "chatterbot/conversation.py", |
17 | 22 | "chatterbot/components.py", |
18 | 23 | "chatterbot/chatterbot.py" |
|
43 | 48 | } |
44 | 49 | ], |
45 | 50 | "assigned_files": [ |
| 51 | + "examples/specific_response_example.py", |
| 52 | + "examples/math_and_time.py", |
| 53 | + "examples/convert_units.py", |
| 54 | + "examples/default_response_example.py", |
46 | 55 | "chatterbot/search.py", |
47 | 56 | "chatterbot/response_selection.py", |
| 57 | + "chatterbot/filters.py", |
48 | 58 | "chatterbot/comparisons.py", |
49 | 59 | "chatterbot/logic/unit_conversion.py", |
50 | 60 | "chatterbot/logic/mathematical_evaluation.py", |
|
79 | 89 | } |
80 | 90 | ], |
81 | 91 | "assigned_files": [ |
| 92 | + "examples/training_example_chatterbot_corpus.py", |
| 93 | + "examples/tagged_dataset_example.py", |
| 94 | + "examples/memory_sql_example.py", |
| 95 | + "examples/training_example_list_data.py", |
| 96 | + "examples/training_example_ubuntu_corpus.py", |
| 97 | + "examples/export_example.py", |
| 98 | + "examples/django_example/django_example/management/commands/train.py", |
82 | 99 | "chatterbot/corpus.py", |
83 | 100 | "chatterbot/vectorstores.py", |
84 | 101 | "chatterbot/trainers.py", |
85 | | - "chatterbot/ext/django_chatterbot/__init__.py", |
86 | | - "chatterbot/ext/django_chatterbot/apps.py", |
87 | 102 | "chatterbot/ext/django_chatterbot/models.py", |
88 | 103 | "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 | 104 | "chatterbot/ext/django_chatterbot/migrations/0014_remove_statement_extra_data.py", |
93 | | - "chatterbot/ext/django_chatterbot/migrations/__init__.py", |
94 | 105 | "chatterbot/ext/django_chatterbot/migrations/0005_statement_created_at.py", |
95 | 106 | "chatterbot/ext/django_chatterbot/migrations/0011_blank_extra_data.py", |
96 | 107 | "chatterbot/ext/django_chatterbot/migrations/0016_statement_stemmed_text.py", |
|
110 | 121 | "chatterbot/ext/django_chatterbot/migrations/0006_create_conversation.py", |
111 | 122 | "chatterbot/ext/django_chatterbot/migrations/0007_response_created_at.py", |
112 | 123 | "chatterbot/ext/django_chatterbot/migrations/0017_tags_unique.py", |
113 | | - "chatterbot/ext/sqlalchemy_app/__init__.py", |
114 | 124 | "chatterbot/ext/sqlalchemy_app/models.py", |
115 | 125 | "chatterbot/storage/storage_adapter.py", |
116 | 126 | "chatterbot/storage/mongodb.py", |
|
141 | 151 | "chatterbot/tagging.py", |
142 | 152 | "chatterbot/parsing.py", |
143 | 153 | "chatterbot/preprocessors.py", |
144 | | - "chatterbot/filters.py", |
145 | 154 | "chatterbot/languages.py" |
146 | 155 | ], |
147 | 156 | "can_expand": true |
|
158 | 167 | } |
159 | 168 | ], |
160 | 169 | "assigned_files": [ |
| 170 | + "examples/openai_example.py", |
| 171 | + "examples/ollama_example.py", |
161 | 172 | "chatterbot/llm.py" |
162 | 173 | ], |
163 | 174 | "can_expand": true |
|
167 | 178 | "description": "Component for all unclassified files and utility functions (Utility functions/External Libraries/Dependencies)", |
168 | 179 | "referenced_source_code": [], |
169 | 180 | "assigned_files": [ |
170 | | - "examples/training_example_chatterbot_corpus.py", |
171 | 181 | "examples/__init__.py", |
172 | | - "examples/basic_example.py", |
173 | | - "examples/terminal_example.py", |
174 | | - "examples/terminal_mongo_example.py", |
175 | | - "examples/specific_response_example.py", |
176 | | - "examples/tagged_dataset_example.py", |
177 | | - "examples/memory_sql_example.py", |
178 | | - "examples/training_example_list_data.py", |
179 | | - "examples/math_and_time.py", |
180 | | - "examples/openai_example.py", |
181 | | - "examples/training_example_ubuntu_corpus.py", |
182 | | - "examples/convert_units.py", |
183 | | - "examples/ollama_example.py", |
184 | | - "examples/export_example.py", |
185 | | - "examples/default_response_example.py", |
186 | 182 | "examples/tkinter_gui.py", |
187 | | - "examples/learning_feedback_example.py", |
188 | 183 | "examples/django_example/manage.py", |
189 | 184 | "examples/django_example/django_example/asgi.py", |
190 | 185 | "examples/django_example/django_example/__init__.py", |
191 | 186 | "examples/django_example/django_example/settings.py", |
192 | | - "examples/django_example/django_example/views.py", |
193 | 187 | "examples/django_example/django_example/wsgi.py", |
194 | 188 | "examples/django_example/django_example/urls.py", |
195 | 189 | "examples/django_example/django_example/management/__init__.py", |
196 | 190 | "examples/django_example/django_example/management/commands/__init__.py", |
197 | | - "examples/django_example/django_example/management/commands/train.py", |
198 | 191 | "docs/conf.py", |
199 | 192 | "docs/_ext/github.py", |
200 | 193 | "docs/_ext/canonical.py", |
|
205 | 198 | "chatterbot/utils.py", |
206 | 199 | "chatterbot/exceptions.py", |
207 | 200 | "chatterbot/ext/__init__.py", |
| 201 | + "chatterbot/ext/django_chatterbot/__init__.py", |
| 202 | + "chatterbot/ext/django_chatterbot/apps.py", |
| 203 | + "chatterbot/ext/django_chatterbot/settings.py", |
| 204 | + "chatterbot/ext/django_chatterbot/model_admin.py", |
| 205 | + "chatterbot/ext/django_chatterbot/admin.py", |
| 206 | + "chatterbot/ext/django_chatterbot/migrations/__init__.py", |
| 207 | + "chatterbot/ext/sqlalchemy_app/__init__.py", |
208 | 208 | "chatterbot/storage/__init__.py", |
209 | 209 | "chatterbot/logic/__init__.py" |
210 | 210 | ], |
|
252 | 252 | "assigned_files": [], |
253 | 253 | "can_expand": false |
254 | 254 | }, |
| 255 | + { |
| 256 | + "name": "Unclassified", |
| 257 | + "description": "Component for all unclassified files and utility functions (Utility functions/External Libraries/Dependencies)", |
| 258 | + "referenced_source_code": [], |
| 259 | + "assigned_files": [], |
| 260 | + "can_expand": false |
| 261 | + }, |
255 | 262 | { |
256 | 263 | "name": "Unclassified", |
257 | 264 | "description": "Component for all unclassified files and utility functions (Utility functions/External Libraries/Dependencies)", |
|
0 commit comments