Repository Analysis

chidiwilliams/buzz

Buzz transcribes and translates audio offline on your personal computer. Powered by OpenAI's Whisper.

25.9 Moderate AI signal View on GitHub

Analysis Overview

This report presents the forensic synthetic code analysis of chidiwilliams/buzz, a Python project with 20,158 GitHub stars. SynthScan v2.0 examined 56,431 lines of code across 345 source files, recording 1346 pattern matches distributed across 14 syntactic categories. The overall adjusted score of 25.9 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).

25.9
Adjusted Score
25.9
Raw Score
100%
Time Factor
2026-07-02
Last Push
20.2K
Stars
Python
Language
56.4K
Lines of Code
345
Files
1.3K
Pattern Hits
2026-07-14
Scan Date
0.01
HC Hit Rate

What These Metrics Mean

Adjusted Score
Primary synthetic code indicator. Raw score normalised per 1,000 lines of code and multiplied by the temporal discount factor. This is the definitive comparative metric — use it to rank repositories by AI authorship density.
Raw Score
The unmodified sum of all severity-weighted, context-multiplied pattern match scores before temporal discounting. Reflects the absolute signal strength independent of when the repository was last active.
Time Factor
The temporal discount multiplier (0–100%) applied to the raw score. Repositories last updated before ChatGPT's launch (Nov 2022) receive a 5% factor. Full signal is only assigned to repositories active in the post-adoption era (Jan 2024+).
Pattern Hits
Total count of individual pattern matches across all files and categories. A high hit count with a low score may indicate a very large codebase with isolated AI snippets; a low count with a high score indicates dense, concentrated AI signatures.
HC Hit Rate
High+Critical pattern hits per file, averaged across the repository. This orthogonal signal catches repositories where a few files are densely packed with high-severity AI tells — a strong indicator even when the normalised score appears moderate due to codebase size.
Lines of Code / Files
Total lines and files analysed. The scanner examines 94 file extensions. These denominators are used to normalise the score, enabling fair comparison between repositories of vastly different sizes.

Score History

This chart maps the temporal evolution of the adjusted synthetic code score across successive scan runs. An upward trajectory indicates ongoing incorporation of AI-generated code or expanding LLM-assisted scaffolding; a stable or declining trajectory may reflect active human refactoring, code removal, or the adoption of stricter authorship policies. The dashed secondary line (right axis) independently tracks total raw pattern hit count, which can diverge from the normalised score when codebase size changes significantly between scans.

Severity Breakdown

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.

CRITICAL 2HIGH 1MEDIUM 42LOW 1301

Directory Score Breakdown

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.

Pattern Findings

The scanner identified 1346 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.

Hyper-Verbose Identifiers1034 hits · 1056 pts
SeverityFileLineSnippetContext
LOWtests/cache_test.py10 def test_should_save_and_load(self, tmp_path):CODE
LOWtests/conftest.py62def transcription_segment_dao(db) -> TranscriptionSegmentDAO:CODE
LOWtests/gui_test.py53 def test_should_show_sorted_whisper_languages(self, qtbot):CODE
LOWtests/gui_test.py60 def test_should_select_en_as_default_language(self, qtbot):CODE
LOWtests/gui_test.py65 def test_should_select_detect_language_as_default(self, qtbot):CODE
LOWtests/gui_test.py83 def test_select_default_mic_when_no_default(self):CODE
LOWtests/gui_test.py97 def test_should_check_for_updates(self, qtbot: QtBot):CODE
LOWtests/gui_test.py115 def test_should_update_advanced_settings(self, qtbot: QtBot):CODE
LOWtests/gui_test.py151 def test_should_update_selected_model_on_type(self, qtbot: QtBot):CODE
LOWtests/gui_test.py164 def test_should_show_list_of_models(self, qtbot: QtBot):CODE
LOWtests/gui_test.py176 def test_should_select_model_from_list(self, qtbot: QtBot):CODE
LOWtests/gui_test.py214 def _set_text_and_wait_response(qtbot: QtBot, widget: HuggingFaceSearchLineEdit):CODE
LOWtests/gui_test.py221 def test_should_update_model_type(self, qtbot):CODE
LOWtests/recording_test.py9 def test_initial_buffer_is_empty(self):CODE
LOWtests/recording_test.py15 def test_initial_accumulation_size_is_zero(self):CODE
LOWtests/recording_test.py26 def test_emits_amplitude_changed(self):CODE
LOWtests/recording_test.py54 def test_emits_average_amplitude_when_buffer_full(self):CODE
LOWtests/recording_test.py67 def test_resets_buffer_after_emitting_average(self):CODE
LOWtests/recording_test.py77 def test_does_not_emit_average_before_buffer_full(self):CODE
LOWtests/recording_test.py89 def test_average_amplitude_is_rms_of_accumulated_buffer(self):CODE
LOWtests/recording_test.py106 def test_accumulation_size_set_from_sample_rate(self):CODE
LOWtests/model_loader_test.py47 def test_empty_returns_english(self):CODE
LOWtests/model_loader_test.py50 def test_two_letter_known_code(self):CODE
LOWtests/model_loader_test.py55 def test_three_letter_code_returned_as_is(self):CODE
LOWtests/model_loader_test.py59 def test_unknown_two_letter_code_returned_as_is(self):CODE
LOWtests/model_loader_test.py83 def test_mms_case_insensitive(self):CODE
LOWtests/model_loader_test.py91 def test_to_faster_whisper_model_size_large(self):CODE
LOWtests/model_loader_test.py94 def test_to_faster_whisper_model_size_tiny(self):CODE
LOWtests/model_loader_test.py100 def test_to_whisper_cpp_model_size_large(self):CODE
LOWtests/model_loader_test.py103 def test_to_whisper_cpp_model_size_tiny(self):CODE
LOWtests/model_loader_test.py186 def test_default_respects_model_type_env(self, monkeypatch):CODE
LOWtests/model_loader_test.py191 def test_default_respects_model_size_env(self, monkeypatch):CODE
LOWtests/model_loader_test.py196 def test_default_invalid_model_type_env_falls_back(self, monkeypatch):CODE
LOWtests/model_loader_test.py201 def test_default_invalid_model_size_env_falls_back(self, monkeypatch):CODE
LOWtests/model_loader_test.py206 def test_get_local_model_path_openai_api(self):CODE
LOWtests/model_loader_test.py216 def test_unknown_size_returns_none(self):CODE
LOWtests/model_loader_test.py220 def test_all_defined_sizes_have_values(self):CODE
LOWtests/model_loader_test.py238 def test_whisper_model_not_downloaded(self):CODE
LOWtests/model_loader_test.py243 def test_whisper_model_downloaded(self):CODE
LOWtests/model_loader_test.py248 def test_openai_api_not_deletable(self):CODE
LOWtests/model_loader_test.py252 def test_hugging_face_not_deletable(self):CODE
LOWtests/model_loader_test.py261 def test_whisper_cpp_file_not_exists(self):CODE
LOWtests/model_loader_test.py267 def test_whisper_file_not_exists(self):CODE
LOWtests/model_loader_test.py272 def test_whisper_file_too_small(self):CODE
LOWtests/model_loader_test.py336 def test_faster_whisper_opens_grandparent_directory(self):CODE
LOWtests/model_loader_test.py344 def test_no_model_path_does_nothing(self):CODE
LOWtests/model_loader_test.py353 def test_whisper_model_removes_file(self, tmp_path):CODE
LOWtests/model_loader_test.py361 def test_whisper_cpp_custom_removes_file(self, tmp_path):CODE
LOWtests/model_loader_test.py369 def test_whisper_cpp_non_custom_removes_bin_file(self, tmp_path):CODE
LOWtests/model_loader_test.py377 def test_whisper_cpp_non_custom_removes_coreml_files(self, tmp_path):CODE
LOWtests/model_loader_test.py427 def test_returns_false_when_no_marker(self, tmp_path):CODE
LOWtests/model_loader_test.py430 def test_returns_true_when_marker_present(self, tmp_path):CODE
LOWtests/model_loader_test.py434 def test_returns_false_for_nonexistent_dir(self, tmp_path):CODE
LOWtests/model_loader_test.py72 def test_various_language_codes(self, code, expected):CODE
LOWtests/model_loader_test.py114 def test_supports_initial_prompt(self):CODE
LOWtests/model_loader_test.py142 def test_is_manually_downloadable(self):CODE
LOWtests/model_loader_test.py288 def test_faster_whisper_not_found(self):CODE
LOWtests/model_loader_test.py293 def test_hugging_face_not_found(self):CODE
LOWtests/model_loader_test.py318 def test_whisper_opens_parent_directory(self):CODE
LOWtests/model_loader_test.py325 def test_hugging_face_opens_grandparent_directory(self):CODE
974 more matches not shown…
Excessive Try-Catch Wrapping115 hits · 126 pts
SeverityFileLineSnippetContext
MEDIUMhatch_build.py221 print(f"Error building whisper.cpp: {e}", file=sys.stderr)CODE
MEDIUMhatch_build.py226 print("Error: 'make' command not found. Please ensure make is installed.", file=sys.stderr)CODE
MEDIUMtests/recording_transcriber_test.py117def callback():CODE
LOWtests/recording_transcriber_test.py121 except Exception as e:CODE
LOWtests/widgets/main_window_test.py115 except Exception:CODE
LOWtests/widgets/main_window_test.py138 except Exception:CODE
LOWbuzz/recording.py37 except Exception as e:CODE
MEDIUMbuzz/recording.py27def start_recording(self):CODE
LOWbuzz/sounddevice_player.py134 except Exception:CODE
LOWbuzz/sounddevice_player.py159 except Exception:CODE
LOWbuzz/sounddevice_player.py203 except Exception:CODE
MEDIUMbuzz/cli.py44 print(f"Error: {str(exc)}\n", file=sys.stderr)CODE
LOWbuzz/model_loader.py29except Exception as e:CODE
LOWbuzz/model_loader.py71except Exception as e:CODE
LOWbuzz/model_loader.py115 except Exception as e:CODE
LOWbuzz/model_loader.py301 except Exception:CODE
LOWbuzz/model_loader.py541 except Exception as exc:CODE
LOWbuzz/model_loader.py813 except Exception as exc:CODE
LOWbuzz/model_loader.py858 except Exception as e:CODE
LOWbuzz/model_loader.py884 except Exception as e:CODE
LOWbuzz/model_loader.py887 except Exception as e:CODE
LOWbuzz/model_loader.py974 except Exception:CODE
LOWbuzz/ffmpeg_video_player.py63 except Exception:CODE
LOWbuzz/ffmpeg_video_player.py164 except Exception:CODE
LOWbuzz/ffmpeg_video_player.py174 except Exception:CODE
LOWbuzz/ffmpeg_video_player.py207 except Exception:CODE
LOWbuzz/ffmpeg_video_player.py241 except Exception:CODE
LOWbuzz/translator.py70 except Exception as e:CODE
LOWbuzz/translator.py107 except Exception as e:CODE
LOWbuzz/file_transcriber_queue_worker.py69 except Exception:CODE
LOWbuzz/file_transcriber_queue_worker.py84 except Exception as e:CODE
LOWbuzz/file_transcriber_queue_worker.py90 except Exception:CODE
LOWbuzz/file_transcriber_queue_worker.py217 except Exception as e:CODE
LOWbuzz/file_transcriber_queue_worker.py414 except Exception:CODE
MEDIUMbuzz/file_transcriber_queue_worker.py64def callback(progress):CODE
LOWbuzz/transcriber/whisper_cpp.py349 except Exception as e:CODE
LOWbuzz/transcriber/whisper_cpp.py355 except Exception as e:CODE
LOWbuzz/transcriber/whisper_cpp.py507 except Exception as e:CODE
LOWbuzz/transcriber/file_transcriber.py46 except Exception as exc:CODE
LOWbuzz/transcriber/file_transcriber.py88 except Exception as exc:CODE
LOWbuzz/transcriber/file_transcriber.py116 except Exception as exc:CODE
LOWbuzz/transcriber/recording_transcriber.py157 except Exception as exc:CODE
LOWbuzz/transcriber/recording_transcriber.py346 except Exception as e:CODE
LOWbuzz/transcriber/recording_transcriber.py498 except Exception as e:CODE
LOWbuzz/transcriber/whisper_file_transcriber.py206 except Exception as e:CODE
LOWbuzz/transcriber/whisper_file_transcriber.py423 except Exception as e:CODE
LOWbuzz/transcriber/whisper_file_transcriber.py429 except Exception as e:CODE
LOWbuzz/transcriber/whisper_file_transcriber.py443 except Exception as e:CODE
LOW…zz/transcriber/local_whisper_cpp_server_transcriber.py90 except Exception as e:CODE
LOWbuzz/plugins/loader.py81 except Exception as exc:CODE
LOWbuzz/plugins/loader.py116 except Exception as exc:CODE
LOWbuzz/plugins/loader.py143 except Exception as exc:CODE
LOWbuzz/plugins/loader.py188 except Exception as exc:CODE
LOWbuzz/plugins/post_processing.py53 except Exception as exc: # noqa: BLE001 - propagated to callerCODE
LOWbuzz/plugins/post_processing.py101 except Exception as exc: # noqa: BLE001CODE
MEDIUMbuzz/plugins/post_processing.py50def run():CODE
MEDIUMbuzz/plugins/post_processing.py97def run(self):CODE
LOWbuzz/plugins/manager.py65 except Exception as exc:CODE
LOWbuzz/plugins/manager.py71 except Exception as exc:CODE
LOWbuzz/plugins/manager.py98 except Exception as exc:CODE
55 more matches not shown…
Unused Imports81 hits · 71 pts
SeverityFileLineSnippetContext
LOWtests/recording_test.py2CODE
LOWtests/mock_qt.py5CODE
LOWtests/model_loader_test.py1CODE
LOWtests/model_loader_test.py3CODE
LOWtests/model_loader_test.py4CODE
LOWtests/model_loader_test.py6CODE
LOWtests/model_loader_test.py714CODE
LOWtests/model_loader_test.py724CODE
LOWtests/recording_transcriber_test.py2CODE
LOWtests/recording_transcriber_test.py5CODE
LOWtests/translator_test.py2CODE
LOWtests/translator_test.py4CODE
LOWtests/translator_test.py11CODE
LOWtests/cli_test.py2CODE
LOWtests/update_checker_test.py6CODE
LOWtests/transcriber/recording_transcriber_test.py5CODE
LOWtests/transcriber/recording_transcriber_test.py14CODE
LOWtests/transcriber/recording_transcriber_test.py62CODE
LOWtests/transcriber/transformers_whisper_test.py1CODE
LOWtests/transcriber/transformers_whisper_test.py2CODE
LOWtests/transcriber/transformers_whisper_test.py3CODE
LOW…ranscriber/openai_whisper_api_file_transcriber_test.py10CODE
LOWtests/settings/settings_test.py1CODE
LOWtests/settings/settings_test.py2CODE
LOWtests/db/entity/transcription_test.py1CODE
LOWtests/db/service/transcription_service_test.py2CODE
LOWtests/db/service/transcription_service_test.py3CODE
LOWtests/widgets/update_dialog_test.py4CODE
LOWtests/widgets/transcription_tasks_table_widget_test.py10CODE
LOWtests/widgets/transcription_tasks_table_widget_test.py14CODE
LOWtests/widgets/speaker_identification_widget_test.py1CODE
LOWtests/widgets/recording_transcriber_widget_test.py10CODE
LOWtests/widgets/presentation_window_test.py2CODE
LOWtests/widgets/presentation_window_test.py3CODE
LOWtests/widgets/presentation_window_test.py5CODE
LOWtests/widgets/presentation_window_test.py5CODE
LOWtests/widgets/video_player_test.py4CODE
LOWtests/widgets/hugging_face_search_line_edit_test.py5CODE
LOWtests/widgets/menu_bar_test.py1CODE
LOWtests/widgets/plugins_dialog/plugins_dialog_test.py1CODE
LOWtests/store/keyring_store_test.py1CODE
LOWtests/store/keyring_store_test.py5CODE
LOWtests/store/keyring_store_test.py5CODE
LOWbuzz/transformers_whisper.py3CODE
LOWbuzz/transformers_whisper.py8CODE
LOWbuzz/transformers_whisper.py375CODE
LOWbuzz/transformers_whisper.py267CODE
LOWbuzz/whisper_audio.py5CODE
LOWbuzz/locale.py1CODE
LOWbuzz/locale.py2CODE
LOWbuzz/translator.py7CODE
LOWbuzz/buzz.py7CODE
LOWbuzz/buzz.py12CODE
LOWbuzz/transcriber/recording_transcriber.py15CODE
LOWbuzz/transcriber/openai_whisper_api_file_transcriber.py11CODE
LOWbuzz/transcriber/whisper_file_transcriber.py10CODE
LOWbuzz/transcriber/whisper_file_transcriber.py20CODE
LOWbuzz/transcriber/whisper_file_transcriber.py21CODE
LOW…zz/transcriber/local_whisper_cpp_server_transcriber.py7CODE
LOWbuzz/settings/settings.py3CODE
21 more matches not shown…
Decorative Section Separators21 hits · 69 pts
SeverityFileLineSnippetContext
MEDIUMtests/plugins/plugin_system_test.py668# ---------------------------------------------------------------------------COMMENT
MEDIUMtests/plugins/plugin_system_test.py670# ---------------------------------------------------------------------------COMMENT
MEDIUMtests/plugins/plugin_system_test.py908# ---------------------------------------------------------------------------COMMENT
MEDIUMtests/plugins/plugin_system_test.py910# ---------------------------------------------------------------------------COMMENT
MEDIUMappimage/build-appimage.sh33# ── Step 1: PyInstaller bundle ──────────────────────────────────────────────COMMENT
MEDIUMappimage/build-appimage.sh42# ── Step 2: Create AppDir ───────────────────────────────────────────────────COMMENT
MEDIUMappimage/build-appimage.sh53# ── Step 3: Desktop integration ─────────────────────────────────────────────COMMENT
MEDIUMappimage/build-appimage.sh79# ── Step 4: AppRun entry point ──────────────────────────────────────────────COMMENT
MEDIUMappimage/build-appimage.sh94# ── Step 5: Build AppImage ──────────────────────────────────────────────────COMMENT
MEDIUMbuzz/widgets/video_player.py130 # ------------------------------------------------------------------COMMENT
MEDIUMbuzz/widgets/video_player.py132 # ------------------------------------------------------------------COMMENT
MEDIUMbuzz/widgets/video_player.py152 # ------------------------------------------------------------------COMMENT
MEDIUMbuzz/widgets/video_player.py154 # ------------------------------------------------------------------COMMENT
MEDIUMbuzz/widgets/video_player.py164 # ------------------------------------------------------------------COMMENT
MEDIUMbuzz/widgets/video_player.py166 # ------------------------------------------------------------------COMMENT
MEDIUMbuzz/widgets/audio_player.py129 # ------------------------------------------------------------------COMMENT
MEDIUMbuzz/widgets/audio_player.py131 # ------------------------------------------------------------------COMMENT
MEDIUMbuzz/widgets/audio_player.py162 # ------------------------------------------------------------------COMMENT
MEDIUMbuzz/widgets/audio_player.py164 # ------------------------------------------------------------------COMMENT
MEDIUMbuzz/widgets/audio_player.py225 # ------------------------------------------------------------------COMMENT
MEDIUMbuzz/widgets/audio_player.py227 # ------------------------------------------------------------------COMMENT
Deep Nesting41 hits · 34 pts
SeverityFileLineSnippetContext
LOWhatch_build.py13CODE
LOWtests/transcriber/recording_transcriber_test.py88CODE
LOWbuzz/model_loader.py545CODE
LOWbuzz/model_loader.py670CODE
LOWbuzz/model_loader.py783CODE
LOWbuzz/model_loader.py820CODE
LOWbuzz/model_loader.py913CODE
LOWbuzz/ffmpeg_video_player.py120CODE
LOWbuzz/translator.py147CODE
LOWbuzz/cuda_setup.py24CODE
LOWbuzz/file_transcriber_queue_worker.py276CODE
LOWbuzz/transcriber/whisper_cpp.py77CODE
LOWbuzz/transcriber/whisper_cpp.py240CODE
LOWbuzz/transcriber/file_transcriber.py185CODE
LOWbuzz/transcriber/recording_transcriber.py82CODE
LOWbuzz/transcriber/openai_whisper_api_file_transcriber.py193CODE
LOWbuzz/transcriber/whisper_file_transcriber.py147CODE
LOWbuzz/transcriber/whisper_file_transcriber.py432CODE
LOWbuzz/plugins/loader.py176CODE
LOWbuzz/plugins/manager.py167CODE
LOWbuzz/plugins/base.py44CODE
LOWbuzz/plugins/skip_already_transcribed/plugin.py77CODE
LOWbuzz/plugins/skip_already_transcribed/plugin.py98CODE
LOWbuzz/widgets/transcription_tasks_table_widget.py67CODE
LOWbuzz/widgets/recording_transcriber_widget.py804CODE
LOWbuzz/widgets/recording_transcriber_widget.py839CODE
LOWbuzz/widgets/recording_transcriber_widget.py885CODE
LOWbuzz/widgets/recording_transcriber_widget.py963CODE
LOWbuzz/widgets/recording_transcriber_widget.py1037CODE
LOWbuzz/widgets/recording_transcriber_widget.py1162CODE
LOW…/transcription_viewer/speaker_identification_widget.py209CODE
LOW…/transcription_viewer/speaker_identification_widget.py299CODE
LOW…/transcription_viewer/speaker_identification_widget.py663CODE
LOW…/transcription_viewer/speaker_identification_widget.py727CODE
LOW…ription_viewer/transcription_segments_editor_widget.py42CODE
LOW…ription_viewer/transcription_segments_editor_widget.py145CODE
LOW…ts/transcription_viewer/transcription_viewer_widget.py1078CODE
LOW…ts/transcription_viewer/transcription_viewer_widget.py1352CODE
LOW…ts/transcription_viewer/transcription_viewer_widget.py1391CODE
LOW…ts/transcription_viewer/transcription_viewer_widget.py1439CODE
LOWbuzz/store/keyring_store.py31CODE
Redundant / Tautological Comments20 hits · 31 pts
SeverityFileLineSnippetContext
LOWtests/conftest.py16# Set multiprocessing to use 'spawn' instead of 'fork' on LinuxCOMMENT
LOW…_viewer/transcription_viewer_widget_additional_test.py300 # Set speed to a known value below maximum to ensure we can increaseCOMMENT
LOW…_viewer/transcription_viewer_widget_additional_test.py317 # Set speed to a known value above minimum to ensure we can decreaseCOMMENT
LOWbuzz/transformers_whisper.py252 # Check if this is a PEFT modelCOMMENT
LOWbuzz/transformers_whisper.py261 # Check if user wants reduced GPU memory usage (8-bit quantization)COMMENT
LOWbuzz/pip_utils.py84 # Check if pip is already availableCOMMENT
LOWbuzz/model_loader.py95 # Check if it's the same fileCOMMENT
LOWbuzz/file_transcriber_queue_worker.py388 # Check if the error indicates cancellationCOMMENT
LOWbuzz/transcriber/recording_transcriber.py205 # Check if user wants reduced GPU memory usage (int8 quantization)COMMENT
LOWbuzz/transcriber/whisper_file_transcriber.py133 # Check if the process was terminated (likely due to cancellation)COMMENT
LOWbuzz/transcriber/whisper_file_transcriber.py182 # Check if the file has audio streams before processingCOMMENT
LOWbuzz/transcriber/whisper_file_transcriber.py284 # Check if user wants reduced GPU memory usage (int8 quantization)COMMENT
LOWbuzz/widgets/transcription_tasks_table_widget.py705 # Check if the task can be restartedCOMMENT
LOWbuzz/widgets/transcription_tasks_table_widget.py810 # Add the task to the queue workerCOMMENT
LOW…widgets/transcriber/transcription_options_group_box.py289 # Check if this is an MMS modelCOMMENT
LOW…ription_viewer/transcription_segments_editor_widget.py168 # Check if new start overlaps with previous segment's endCOMMENT
LOW…ription_viewer/transcription_segments_editor_widget.py188 # Check if new end overlaps with next segment's startCOMMENT
LOW…s/transcription_viewer/transcription_resizer_widget.py57 # Check if the language uses spaces between wordsCOMMENT
LOW…ts/transcription_viewer/transcription_viewer_widget.py570 # Set position to the start of the segmentCOMMENT
LOW…ts/transcription_viewer/transcription_viewer_widget.py1191 # Check if we're editing the currently selected segmentCOMMENT
Self-Referential Comments8 hits · 24 pts
SeverityFileLineSnippetContext
MEDIUMtests/model_loader_test.py690 # Create a fake zip with a single top-level directory insideCOMMENT
MEDIUMtests/transcriber/file_transcriber_queue_worker_test.py145 # Create a temporary file to simulate speech extraction outputCOMMENT
MEDIUMtests/transcriber/whisper_file_transcriber_test.py43 # Create a temporary text file (not a valid media file)COMMENT
MEDIUMtests/db/dao/transcription_dao_test.py17 # Create the transcription table with the new schemaCOMMENT
MEDIUMbuzz/transformers_whisper.py404 # Create a simple processor-like object that the pipeline expectsCOMMENT
MEDIUMbuzz/widgets/transcription_tasks_table_widget.py438 # Create a mapping of column IDs to their saved visual positionsCOMMENT
MEDIUMbuzz/widgets/transcription_tasks_table_widget.py798 # Create the new taskCOMMENT
MEDIUMbuzz/store/keyring_store.py55 # Create a socket pair for receiving the secretCOMMENT
Hallucination Indicators2 hits · 20 pts
SeverityFileLineSnippetContext
CRITICAL…ranscriber/openai_whisper_api_file_transcriber_test.py121 mock_openai_client.return_value.audio.transcriptions.create.assert_called()CODE
CRITICAL…widgets/transcriber/transcription_options_group_box.py225 self.transcription_options.model.whisper_model_size.value.title()CODE
Modern Structural Boilerplate16 hits · 16 pts
SeverityFileLineSnippetContext
LOWbuzz/pip_utils.py20logger = logging.getLogger(__name__)CODE
LOWbuzz/cuda_setup.py21logger = logging.getLogger(__name__)CODE
LOWbuzz/settings/settings.py103 def set_value(self, key: Key, value: typing.Any) -> None:CODE
LOWbuzz/plugins/loader.py28logger = logging.getLogger(__name__)CODE
LOWbuzz/plugins/manager.py23logger = logging.getLogger(__name__)CODE
LOWbuzz/plugins/manager.py192 def set_config(self, plugin_id: str, values: dict) -> None:CODE
LOWbuzz/plugins/manager.py214 def set_enabled(self, plugin_id: str, enabled: bool) -> None:CODE
LOWbuzz/plugins/base.py30logger = logging.getLogger(__name__)CODE
LOWbuzz/plugins/skip_already_transcribed/plugin.py18logger = logging.getLogger(__name__)CODE
LOWbuzz/plugins/export_docx/plugin.py28logger = logging.getLogger(__name__)CODE
LOWbuzz/plugins/ai_summary/plugin.py25logger = logging.getLogger(__name__)CODE
LOWbuzz/plugins/enhanced_language_detection/plugin.py29logger = logging.getLogger(__name__)CODE
LOWbuzz/plugins/transcript_resizer/plugin.py27logger = logging.getLogger(__name__)CODE
LOW…/transcription_viewer/speaker_identification_widget.py585 def _setup_audio_player(self) -> None:CODE
LOWbuzz/store/keyring_store.py221def set_password(username: Key, password: str) -> None:CODE
LOWbuzz/store/keyring_store.py298def set_secret(name: str, password: str) -> None:CODE
Cross-Language Confusion1 hit · 5 pts
SeverityFileLineSnippetContext
HIGH…ferences_dialog/shortcuts_editor_preferences_widget.py41 self.shortcuts.set(shortcut, sequence.toString())CODE
Over-Commented Block3 hits · 3 pts
SeverityFileLineSnippetContext
LOW.github/workflows/ci.yml401# needs: [release]COMMENT
LOW.github/workflows/ci.yml421# env:COMMENT
LOWappimage/build-appimage.sh1#!/usr/bin/env bashCOMMENT
Fake / Example Data2 hits · 2 pts
SeverityFileLineSnippetContext
LOWtests/widgets/update_dialog_test.py217 reply = MockDownloadReply(data=b"fake-data")CODE
LOWtests/widgets/update_dialog_test.py232 reply = MockDownloadReply(data=b"fake-data")CODE
Example Usage Blocks1 hit · 2 pts
SeverityFileLineSnippetContext
LOWappimage/build-appimage.sh17# Usage:COMMENT
AI Slop Vocabulary1 hit · 0 pts
SeverityFileLineSnippetContext
MEDIUMtests/widgets/transcription_viewer_test.py994 """Test comprehensive search clear functionality including UI state reset"""STRING