ChatterBot is a machine learning, conversational dialog engine for creating chat bots
This report presents the forensic synthetic code analysis of gunthercox/ChatterBot, a Python project with 14,508 GitHub stars. SynthScan v2.0 examined 30,837 lines of code across 162 source files, recording 503 pattern matches distributed across 14 syntactic categories. The overall adjusted score of 26.1 places this repository in the Moderate AI signal band.
The scanner applied 160+ deterministic lexical heuristics, multi-line block detectors, abstract syntax tree depth profilers, and a cross-file Jaccard similarity matrix to construct a statistically normalised synthetic code estimate. All matches are individually weighted by severity coefficient and contextual multiplier before summation, and the resulting headline score is temporally discounted to account for the repository's development history relative to the commercial emergence of large language model coding tooling (November 2022 onward).
Longitudinal tracking requires multiple scan runs. Once this repository is re-scanned after new commits land, this chart will visualise how the synthetic code signal evolves over time — enabling you to detect whether AI authorship is growing, stabilising, or being actively corrected by human engineers.
Classifies detected patterns by their diagnostic confidence and structural impact. CRITICAL patterns (coefficient 10) represent definitive synthetic signatures — hallucinated imports, explicit LLM attribution metadata — virtually never produced by human authors. HIGH (5) indicates strong structural tells such as cross-file repetition or cross-linguistic idioms. MEDIUM (2) covers recognisable conversational padding and AI-specific vocabulary. LOW (1) captures subtle indicators like tautological comments and generic boilerplate that require density to carry independent signal.
This horizontal bar chart decomposes the repository's raw synthetic code score by top-level directory, allowing you to pinpoint precisely which modules or components carry the highest AI authorship density. Directories with disproportionately high scores relative to their size warrant targeted manual review: concentrated AI signatures often trace back to mass-generated configuration layers, auto-ported test suites, LLM-scaffolded boilerplate classes, or entire subsystems authored under heavy copilot assistance. Use this view to prioritise your human code-review effort.
The scanner identified 503 distinct pattern matches across 14 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.
Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW⚡ | tests/test_parsing.py | 18 | def test_captured_pattern_is_on_date(self): | CODE |
| LOW⚡ | tests/test_parsing.py | 25 | def test_captured_pattern_this_weekday(self): | CODE |
| LOW⚡ | tests/test_parsing.py | 35 | def test_captured_pattern_last_weekday(self): | CODE |
| LOW⚡ | tests/test_parsing.py | 45 | def test_captured_pattern_next_weekday(self): | CODE |
| LOW⚡ | tests/test_parsing.py | 55 | def test_captured_pattern_minutes_from_now(self): | CODE |
| LOW⚡ | tests/test_parsing.py | 67 | def test_captured_pattern_days_later(self): | CODE |
| LOW⚡ | tests/test_parsing.py | 77 | def test_captured_pattern_year(self): | CODE |
| LOW⚡ | tests/test_parsing.py | 84 | def test_captured_pattern_today(self): | CODE |
| LOW⚡ | tests/test_parsing.py | 91 | def test_captured_pattern_tomorrow(self): | CODE |
| LOW⚡ | tests/test_parsing.py | 101 | def test_captured_pattern_yesterday(self): | CODE |
| LOW⚡ | tests/test_parsing.py | 111 | def test_captured_pattern_before_yesterday(self): | CODE |
| LOW⚡ | tests/test_parsing.py | 121 | def test_captured_pattern_before_today(self): | CODE |
| LOW⚡ | tests/test_parsing.py | 131 | def test_captured_pattern_before_tomorrow(self): | CODE |
| LOW⚡ | tests/test_parsing.py | 165 | def test_captured_pattern_first_quarter_of_year(self): | CODE |
| LOW⚡ | tests/test_parsing.py | 173 | def test_captured_pattern_last_quarter_of_year(self): | CODE |
| LOW⚡ | tests/test_parsing.py | 181 | def test_captured_pattern_is_next_three_weeks(self): | CODE |
| LOW⚡ | tests/test_parsing.py | 191 | def test_captured_pattern_is_next_x_weeks_case_insensitive(self): | CODE |
| LOW⚡ | tests/test_parsing.py | 201 | def test_captured_pattern_is_next_eight_days(self): | CODE |
| LOW⚡ | tests/test_parsing.py | 211 | def test_captured_pattern_is_next_x_days_case_insensitive(self): | CODE |
| LOW⚡ | tests/test_parsing.py | 221 | def test_captured_pattern_is_next_ten_years(self): | CODE |
| LOW⚡ | tests/test_parsing.py | 231 | def test_captured_pattern_is_next_x_years_case_insensitive(self): | CODE |
| LOW⚡ | tests/test_parsing.py | 241 | def test_captured_pattern_is_next_eleven_months(self): | CODE |
| LOW⚡ | tests/test_parsing.py | 377 | def test_this_week_day_before_day(self): | CODE |
| LOW⚡ | tests/test_parsing.py | 384 | def test_this_week_day_after_day(self): | CODE |
| LOW⚡ | tests/test_parsing.py | 391 | def test_today_at_time_uses_base_date(self): | CODE |
| LOW | tests/test_parsing.py | 150 | def test_captured_pattern_two_days(self): | CODE |
| LOW | tests/test_parsing.py | 256 | def test_captured_pattern_is_next_x_months_case_insensitive(self): | CODE |
| LOW | tests/test_parsing.py | 271 | def test_captured_pattern_is_on_day(self): | CODE |
| LOW | tests/test_parsing.py | 293 | def test_captured_pattern_has_am(self): | CODE |
| LOW | tests/test_parsing.py | 325 | def test_captured_pattern_has_pm(self): | CODE |
| LOW | tests/test_parsing.py | 465 | def test_multiple_datetime_expressions(self): | CODE |
| LOW | tests/test_parsing.py | 485 | def test_duration_from_yesterday(self): | CODE |
| LOW | tests/test_parsing.py | 499 | def test_duration_from_tomorrow(self): | CODE |
| LOW | tests/test_parsing.py | 527 | def test_noon_without_convention(self): | CODE |
| LOW⚡ | tests/test_adapter_validation.py | 8 | def test_invalid_storage_adapter(self): | CODE |
| LOW⚡ | tests/test_adapter_validation.py | 14 | def test_valid_storage_adapter(self): | CODE |
| LOW⚡ | tests/test_adapter_validation.py | 22 | def test_invalid_logic_adapter(self): | CODE |
| LOW | tests/test_adapter_validation.py | 36 | def test_valid_adapter_dictionary(self): | CODE |
| LOW | tests/test_adapter_validation.py | 46 | def test_invalid_adapter_dictionary(self): | CODE |
| LOW⚡ | tests/test_benchmarks.py | 44 | def get_chatterbot_corpus_trainer(chatbot): | CODE |
| LOW⚡ | tests/test_benchmarks.py | 51 | def get_ubuntu_corpus_trainer(chatbot): | CODE |
| LOW⚡ | tests/test_benchmarks.py | 60 | def assert_response_duration_is_less_than(self, maximum_duration, strict=False): | CODE |
| LOW | tests/test_benchmarks.py | 96 | def test_levenshtein_distance_comparisons(self): | CODE |
| LOW | tests/test_benchmarks.py | 111 | def test_spacy_similarity_comparisons(self): | CODE |
| LOW | tests/test_benchmarks.py | 126 | def test_get_response_after_chatterbot_corpus_training(self): | CODE |
| LOW | tests/test_benchmarks.py | 136 | def test_get_response_after_ubuntu_corpus_training(self): | CODE |
| LOW | tests/test_benchmarks.py | 156 | def test_levenshtein_distance_comparisons(self): | CODE |
| LOW | tests/test_benchmarks.py | 171 | def test_spacy_similarity_comparisons(self): | CODE |
| LOW | tests/test_benchmarks.py | 186 | def test_get_response_after_chatterbot_corpus_training(self): | CODE |
| LOW | tests/test_benchmarks.py | 196 | def test_get_response_after_ubuntu_corpus_training(self): | CODE |
| LOW | tests/test_search.py | 22 | def test_search_cast_to_list_no_results(self): | CODE |
| LOW | tests/test_search.py | 33 | def test_search_additional_parameters(self): | CODE |
| LOW | tests/test_search.py | 66 | def test_get_closest_statement(self): | CODE |
| LOW | tests/test_search.py | 85 | def test_different_punctuation(self): | CODE |
| LOW | tests/test_search.py | 113 | def test_get_closest_statement(self): | CODE |
| LOW | tests/test_search.py | 134 | def test_confidence_exact_match(self): | CODE |
| LOW | tests/test_search.py | 143 | def test_confidence_half_match(self): | CODE |
| LOW | tests/test_search.py | 184 | def test_get_closest_statement(self): | CODE |
| LOW | tests/test_search.py | 203 | def test_different_punctuation(self): | CODE |
| LOW | tests/test_search.py | 231 | def test_get_closest_statement(self): | CODE |
| 292 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| HIGH | tests/storage/test_redis_adapter.py | 0 | instantiate the adapter before any tests in the test case run. | STRING |
| HIGH | tests/storage/test_mongo_adapter.py | 0 | instantiate the adapter before any tests in the test case run. | STRING |
| HIGH | tests/storage/test_sql_adapter.py | 0 | instantiate the adapter before any tests in the test case run. | STRING |
| HIGH | tests/storage/test_redis_adapter.py | 0 | the count method should return a value of 0 when nothing has been saved to the database. | STRING |
| HIGH | tests/storage/test_mongo_adapter.py | 0 | the count method should return a value of 0 when nothing has been saved to the database. | STRING |
| HIGH | tests/storage/test_sql_adapter.py | 0 | the count method should return a value of 0 when nothing has been saved to the database. | STRING |
| HIGH | tests/django_integration/test_django_adapter.py | 0 | the count method should return a value of 0 when nothing has been saved to the database. | STRING |
| HIGH | tests/storage/test_redis_adapter.py | 0 | the count method should return a value of 1 when one item has been saved to the database. | STRING |
| HIGH | tests/storage/test_mongo_adapter.py | 0 | the count method should return a value of 1 when one item has been saved to the database. | STRING |
| HIGH | tests/storage/test_sql_adapter.py | 0 | the count method should return a value of 1 when one item has been saved to the database. | STRING |
| HIGH | tests/django_integration/test_django_adapter.py | 0 | the count method should return a value of 1 when one item has been saved to the database. | STRING |
| HIGH | tests/storage/test_redis_adapter.py | 0 | test that a matching statement is returned when it exists in the database. | STRING |
| HIGH | tests/storage/test_mongo_adapter.py | 0 | test that a matching statement is returned when it exists in the database. | STRING |
| HIGH | tests/storage/test_sql_adapter.py | 0 | test that a matching statement is returned when it exists in the database. | STRING |
| HIGH | tests/django_integration/test_django_adapter.py | 0 | test that a matching statement is returned when it exists in the database. | STRING |
| HIGH | tests/storage/test_redis_adapter.py | 0 | if no parameters are passed to the filter, then all statements should be returned. | STRING |
| HIGH | tests/storage/test_mongo_adapter.py | 0 | if no parameters are passed to the filter, then all statements should be returned. | STRING |
| HIGH | tests/storage/test_sql_adapter.py | 0 | if no parameters are passed to the filter, then all statements should be returned. | STRING |
| HIGH | tests/django_integration/test_django_adapter.py | 0 | if no parameters are passed to the filter, then all statements should be returned. | STRING |
| HIGH | tests/storage/test_redis_adapter.py | 0 | tests for the create function of the storage adapter. | STRING |
| HIGH | tests/storage/test_mongo_adapter.py | 0 | tests for the create function of the storage adapter. | STRING |
| HIGH | tests/storage/test_sql_adapter.py | 0 | tests for the create function of the storage adapter. | STRING |
| HIGH | tests/django_integration/test_django_adapter.py | 0 | tests for the create function of the storage adapter. | STRING |
| HIGH | tests/storage/test_redis_adapter.py | 0 | the storage adapter should not update a statement with tags that are duplicates. | STRING |
| HIGH | tests/storage/test_mongo_adapter.py | 0 | the storage adapter should not update a statement with tags that are duplicates. | STRING |
| HIGH | tests/storage/test_sql_adapter.py | 0 | the storage adapter should not update a statement with tags that are duplicates. | STRING |
| HIGH | tests/django_integration/test_django_adapter.py | 0 | the storage adapter should not update a statement with tags that are duplicates. | STRING |
| HIGH | tests/storage/test_redis_adapter.py | 0 | tests for the update function of the storage adapter. | STRING |
| HIGH | tests/storage/test_mongo_adapter.py | 0 | tests for the update function of the storage adapter. | STRING |
| HIGH | tests/storage/test_sql_adapter.py | 0 | tests for the update function of the storage adapter. | STRING |
| HIGH | tests/django_integration/test_django_adapter.py | 0 | tests for the update function of the storage adapter. | STRING |
| HIGH | tests/storage/test_mongo_adapter.py | 0 | test that none is returned by the find method when a matching statement is not found. | STRING |
| HIGH | tests/storage/test_sql_adapter.py | 0 | test that none is returned by the find method when a matching statement is not found. | STRING |
| HIGH | tests/django_integration/test_django_adapter.py | 0 | test that none is returned by the find method when a matching statement is not found. | STRING |
| HIGH | chatterbot/storage/sql_storage.py | 0 | removes the statement that matches the input text. removes any responses from statements if the response text matches th | STRING |
| HIGH | chatterbot/storage/redis.py | 0 | removes the statement that matches the input text. removes any responses from statements if the response text matches th | STRING |
| HIGH | chatterbot/storage/storage_adapter.py | 0 | removes the statement that matches the input text. removes any responses from statements if the response text matches th | STRING |
| HIGH | chatterbot/storage/django_storage.py | 0 | removes the statement that matches the input text. removes any responses from statements if the response text matches th | STRING |
| HIGH | chatterbot/storage/sql_storage.py | 0 | creates a new statement matching the keyword arguments specified. returns the created statement. | STRING |
| HIGH | chatterbot/storage/mongodb.py | 0 | creates a new statement matching the keyword arguments specified. returns the created statement. | STRING |
| HIGH | chatterbot/storage/redis.py | 0 | creates a new statement matching the keyword arguments specified. returns the created statement. | STRING |
| HIGH | chatterbot/storage/storage_adapter.py | 0 | creates a new statement matching the keyword arguments specified. returns the created statement. | STRING |
| HIGH | chatterbot/storage/django_storage.py | 0 | creates a new statement matching the keyword arguments specified. returns the created statement. | STRING |
| HIGH | chatterbot/storage/sql_storage.py | 0 | modifies an entry in the database. creates an entry if one does not exist. | STRING |
| HIGH | chatterbot/storage/redis.py | 0 | modifies an entry in the database. creates an entry if one does not exist. | STRING |
| HIGH | chatterbot/storage/storage_adapter.py | 0 | modifies an entry in the database. creates an entry if one does not exist. | STRING |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | tests/test_corpus.py | 147 | # Create a file for testing | COMMENT |
| MEDIUM⚡ | tests/django_integration/test_secondary_database.py | 16 | # Create a chatbot that explicitly uses the 'default' database | COMMENT |
| MEDIUM⚡ | tests/django_integration/test_secondary_database.py | 46 | # Create a statement | COMMENT |
| MEDIUM | examples/openai_example.py | 18 | # Create a new instance of a ChatBot | COMMENT |
| MEDIUM | examples/specific_response_example.py | 4 | # Create a new instance of a ChatBot | COMMENT |
| MEDIUM | examples/ollama_example.py | 17 | # Create a new instance of a ChatBot | COMMENT |
| MEDIUM | examples/memory_sql_example.py | 7 | # Create a new instance of a ChatBot | COMMENT |
| MEDIUM | examples/basic_example.py | 4 | # Create a new chat bot named Charlie | COMMENT |
| MEDIUM | examples/default_response_example.py | 5 | # Create a new instance of a ChatBot | COMMENT |
| MEDIUM | examples/terminal_example.py | 12 | # Create a new instance of a ChatBot | COMMENT |
| MEDIUM | examples/learning_feedback_example.py | 14 | # Create a new instance of a ChatBot | COMMENT |
| MEDIUM | examples/terminal_mongo_example.py | 7 | # Create a new ChatBot instance | COMMENT |
| MEDIUM | chatterbot/trainers.py | 600 | # Create the data directory if it does not already exist | COMMENT |
| MEDIUM | chatterbot/tagging.py | 67 | # Create a new empty spacy nlp object | COMMENT |
| MEDIUM | chatterbot/logic/unit_conversion.py | 203 | # Create a statement and process it | STRING |
| MEDIUM | chatterbot/storage/sql_storage.py | 34 | # Create a file database if the database is not a connection string | COMMENT |
| MEDIUM | chatterbot/storage/sql_storage.py | 302 | # Create the tag if it doesn't exist | COMMENT |
| MEDIUM | chatterbot/storage/sql_storage.py | 359 | # Create the tag if it does not exist | COMMENT |
| MEDIUM | chatterbot/storage/sql_storage.py | 393 | # Create a new statement entry if one does not already exist | COMMENT |
| MEDIUM | chatterbot/storage/sql_storage.py | 418 | # Create the record | COMMENT |
| MEDIUM | chatterbot/storage/mongodb.py | 66 | # Create a storage-aware statement | COMMENT |
| MEDIUM | chatterbot/storage/redis.py | 593 | # Create a Document-like object to use with model_to_object | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | tests/test_examples.py | 11 | CODE | |
| LOW | tests/test_examples.py | 14 | CODE | |
| LOW | tests/test_examples.py | 17 | CODE | |
| LOW | tests/test_examples.py | 32 | CODE | |
| LOW | tests/test_examples.py | 35 | CODE | |
| LOW | tests/test_examples.py | 38 | CODE | |
| LOW | tests/test_examples.py | 41 | CODE | |
| LOW | tests/test_examples.py | 64 | CODE | |
| LOW | tests/test_examples.py | 67 | CODE | |
| LOW | chatterbot/vectorstores.py | 4 | CODE | |
| LOW | chatterbot/__init__.py | 4 | CODE | |
| LOW | chatterbot/tagging.py | 63 | CODE | |
| LOW | chatterbot/tagging.py | 122 | CODE | |
| LOW | chatterbot/logic/__init__.py | 1 | CODE | |
| LOW | chatterbot/logic/__init__.py | 2 | CODE | |
| LOW | chatterbot/logic/__init__.py | 3 | CODE | |
| LOW | chatterbot/logic/__init__.py | 4 | CODE | |
| LOW | chatterbot/logic/__init__.py | 5 | CODE | |
| LOW | chatterbot/logic/__init__.py | 6 | CODE | |
| LOW | chatterbot/logic/__init__.py | 7 | CODE | |
| LOW | chatterbot/logic/__init__.py | 7 | CODE | |
| LOW | chatterbot/logic/__init__.py | 7 | CODE | |
| LOW | chatterbot/storage/__init__.py | 1 | CODE | |
| LOW | chatterbot/storage/__init__.py | 2 | CODE | |
| LOW | chatterbot/storage/__init__.py | 3 | CODE | |
| LOW | chatterbot/storage/__init__.py | 4 | CODE | |
| LOW | chatterbot/storage/__init__.py | 5 | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | tests/django_integration/__init__.py | 11 | # Check if Django is available | COMMENT |
| LOW | chatterbot/parsing.py | 671 | # Check if query is `2 days before yesterday` or `day before yesterday` | STRING |
| LOW | chatterbot/conversation.py | 97 | # Set timezone to UTC if no timezone was provided | COMMENT |
| LOW | chatterbot/chatterbot.py | 86 | # Check if storage adapter has a preferred tagger | COMMENT |
| LOW | chatterbot/chatterbot.py | 132 | # Check if storage adapter has a preferred search algorithm | COMMENT |
| LOW | chatterbot/logic/llm_adapters.py | 115 | # Check if adapter supports tool functionality | COMMENT |
| LOW | chatterbot/logic/llm_adapters.py | 512 | # Check if model matches any known pattern | COMMENT |
| LOW | chatterbot/logic/llm_adapters.py | 639 | # Check if LLM wants to use a tool | COMMENT |
| LOW | chatterbot/logic/llm_adapters.py | 834 | # Check if LLM wants to use a tool | COMMENT |
| LOW | chatterbot/logic/logic_adapter.py | 125 | # Set confidence to zero because a random response is selected | COMMENT |
| LOW | chatterbot/logic/time_adapter.py | 58 | # Check if the input statement contains a time-related question | COMMENT |
| LOW | chatterbot/storage/sql_storage.py | 62 | # Set isolation_level to None to execute outside transaction | COMMENT |
| LOW | chatterbot/storage/sql_storage.py | 92 | # Check if the expected index exists on the text field of the statement table | COMMENT |
| LOW | chatterbot/storage/sql_storage.py | 103 | # Check if the expected index exists on the in_response_to field of the statement table | COMMENT |
| LOW | chatterbot/storage/sql_storage.py | 330 | # Check if any statements already have a search text | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | tests/django_integration/__init__.py | 26 | except Exception as e: | CODE |
| LOW | chatterbot/vectorstores.py | 60 | except Exception as e: | CODE |
| LOW | chatterbot/ext/django_chatterbot/abstract_models.py | 141 | except Exception: | CODE |
| LOW | chatterbot/logic/llm_adapters.py | 168 | except Exception as e: | CODE |
| LOW | chatterbot/logic/llm_adapters.py | 276 | except Exception as e: | CODE |
| LOW | chatterbot/logic/llm_adapters.py | 542 | except Exception as e: | CODE |
| LOW | chatterbot/logic/llm_adapters.py | 583 | except Exception as e: | CODE |
| LOW | chatterbot/logic/llm_adapters.py | 607 | except Exception as e: | CODE |
| LOW | chatterbot/logic/llm_adapters.py | 689 | except Exception as e: | CODE |
| LOW | chatterbot/logic/llm_adapters.py | 780 | except Exception as e: | CODE |
| LOW | chatterbot/logic/llm_adapters.py | 804 | except Exception as e: | CODE |
| LOW | chatterbot/logic/llm_adapters.py | 883 | except Exception as e: | CODE |
| LOW | chatterbot/logic/mathematical_evaluation.py | 118 | except Exception as e: | CODE |
| LOW | chatterbot/logic/unit_conversion.py | 162 | except Exception as e: | STRING |
| LOW | chatterbot/logic/unit_conversion.py | 212 | except Exception as e: | STRING |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| CRITICAL | …ples/django_example/django_example/static/js/jquery.js | 4232 | jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) { | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| HIGH | chatterbot/logic/llm_adapters.py | 241 | Execute a tool by its name with the given parameters. Args: tool_name: Name of the tool to | STRING |
| HIGH | chatterbot/logic/llm_adapters.py | 418 | Process the input statement using the LLM. Args: statement: The input statement to process | STRING |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | chatterbot/parsing.py | 587 | CODE | |
| LOW | chatterbot/parsing.py | 665 | CODE | |
| LOW | chatterbot/chatterbot.py | 55 | CODE | |
| LOW | chatterbot/chatterbot.py | 271 | CODE | |
| LOW | chatterbot/trainers.py | 160 | CODE | |
| LOW | chatterbot/trainers.py | 294 | CODE | |
| LOW | chatterbot/logic/llm_adapters.py | 611 | CODE | |
| LOW | chatterbot/logic/unit_conversion.py | 146 | CODE | |
| LOW | chatterbot/logic/mcp_tools.py | 100 | CODE | |
| LOW | chatterbot/storage/redis.py | 101 | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | docs/conf.py | 121 | # the docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 | COMMENT |
| LOW | …ples/django_example/django_example/static/js/jquery.js | 941 | // Regular expressions | COMMENT |
| LOW | …ples/django_example/django_example/static/js/jquery.js | 3401 | get: function( owner, key ) { | COMMENT |
| LOW | …ples/django_example/django_example/static/js/jquery.js | 8801 | jQuery.fn.andSelf = jQuery.fn.addBack; | COMMENT |
| LOW | .github/workflows/python-package.yml | 61 | # -------------------------------------------------------------- | COMMENT |
| LOW | chatterbot/trainers.py | 701 | extract_kwargs = {} | COMMENT |
| LOW | chatterbot/logic/best_match.py | 41 | break | COMMENT |
| LOW | chatterbot/storage/redis.py | 401 | sort_by=ordering | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | …ples/django_example/django_example/static/js/jquery.js | 8813 | // understands anonymous AMD modules. A named AMD is safest and most robust | COMMENT |
| LOW | chatterbot/logic/llm_adapters.py | 428 | # If no tools are configured, just call LLM directly | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | .github/workflows/python-package.yml | 61 | # -------------------------------------------------------------- | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | chatterbot/storage/redis.py | 139 | # Configure embedding model | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | tests/django_integration/test_settings.py | 11 | SECRET_KEY = 'fake-key' | CODE |