Skip to content

Add functional modules for VOICEBOX update - #1

Open
ASSISTIXTEAM wants to merge 1 commit into
mainfrom
codex/create-new-working-update
Open

Add functional modules for VOICEBOX update#1
ASSISTIXTEAM wants to merge 1 commit into
mainfrom
codex/create-new-working-update

Conversation

@ASSISTIXTEAM

Copy link
Copy Markdown
Owner

Summary

  • add Whisper-based transcriber, helpers, and media utilities
  • provide desktop, mega, and web GUIs plus CLI entrypoint
  • refresh NEXT_STEPS to reflect modules in repo and current checks

Testing

  • Not run (not requested)

Codex Task

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread gui_desktop.py
Comment on lines +119 to +125
except Exception as exc: # noqa: BLE001
logger.exception("Ошибка транскрибации")
self._append_log(f"Ошибка: {exc}")
messagebox.showerror("Ошибка", str(exc))
finally:
if temp_holder:
temp_holder.close()

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Avoid masking errors with uninitialized temp file handle

In _transcribe_selected the cleanup at finally: uses temp_holder even though this variable is only assigned later in the try body; if ensure_file_exists or WhisperTranscriber fails before the assignment (e.g., when a user selects a missing file), temp_holder is undefined and the finally block raises UnboundLocalError, masking the original problem and breaking the error dialog. Initialize temp_holder before entering the try or guard the reference so early failures don’t crash the GUI.

Useful? React with 👍 / 👎.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant