s2t 0.1.1__tar.gz → 0.1.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {s2t-0.1.1 → s2t-0.1.2}/PKG-INFO +1 -1
- {s2t-0.1.1 → s2t-0.1.2}/src/s2t/whisper_engine.py +4 -1
- {s2t-0.1.1 → s2t-0.1.2}/src/s2t.egg-info/PKG-INFO +1 -1
- {s2t-0.1.1 → s2t-0.1.2}/.gitignore +0 -0
- {s2t-0.1.1 → s2t-0.1.2}/.pre-commit-config.yaml +0 -0
- {s2t-0.1.1 → s2t-0.1.2}/AGENTS.md +0 -0
- {s2t-0.1.1 → s2t-0.1.2}/CONTRIBUTING.md +0 -0
- {s2t-0.1.1 → s2t-0.1.2}/MANIFEST.in +0 -0
- {s2t-0.1.1 → s2t-0.1.2}/Makefile +0 -0
- {s2t-0.1.1 → s2t-0.1.2}/README.md +0 -0
- {s2t-0.1.1 → s2t-0.1.2}/docs/RELEASING.md +0 -0
- {s2t-0.1.1 → s2t-0.1.2}/docs/SESSION_STATE.md +0 -0
- {s2t-0.1.1 → s2t-0.1.2}/pyproject.toml +0 -0
- {s2t-0.1.1 → s2t-0.1.2}/scripts/bench_transcribe.py +0 -0
- {s2t-0.1.1 → s2t-0.1.2}/setup.cfg +0 -0
- {s2t-0.1.1 → s2t-0.1.2}/src/s2t/__init__.py +0 -0
- {s2t-0.1.1 → s2t-0.1.2}/src/s2t/cli.py +0 -0
- {s2t-0.1.1 → s2t-0.1.2}/src/s2t/config.py +0 -0
- {s2t-0.1.1 → s2t-0.1.2}/src/s2t/outputs.py +0 -0
- {s2t-0.1.1 → s2t-0.1.2}/src/s2t/py.typed +0 -0
- {s2t-0.1.1 → s2t-0.1.2}/src/s2t/recorder.py +0 -0
- {s2t-0.1.1 → s2t-0.1.2}/src/s2t/types.py +0 -0
- {s2t-0.1.1 → s2t-0.1.2}/src/s2t/utils.py +0 -0
- {s2t-0.1.1 → s2t-0.1.2}/src/s2t.egg-info/SOURCES.txt +0 -0
- {s2t-0.1.1 → s2t-0.1.2}/src/s2t.egg-info/dependency_links.txt +0 -0
- {s2t-0.1.1 → s2t-0.1.2}/src/s2t.egg-info/entry_points.txt +0 -0
- {s2t-0.1.1 → s2t-0.1.2}/src/s2t.egg-info/requires.txt +0 -0
- {s2t-0.1.1 → s2t-0.1.2}/src/s2t.egg-info/top_level.txt +0 -0
{s2t-0.1.1 → s2t-0.1.2}/PKG-INFO
RENAMED
@@ -29,7 +29,10 @@ class WhisperEngine:
|
|
29
29
|
self.samplerate = samplerate
|
30
30
|
self.channels = channels
|
31
31
|
self.verbose = verbose
|
32
|
-
|
32
|
+
# Use the provided profile dict even if it's empty.
|
33
|
+
# Using `or {}` would create a new dict when an empty one is passed,
|
34
|
+
# breaking shared accumulation with the caller (CLI).
|
35
|
+
self.profile = profile if profile is not None else {}
|
33
36
|
self._executor: ThreadPoolExecutor | None = None
|
34
37
|
|
35
38
|
def preload(self) -> tuple[ThreadPoolExecutor | None, Future | None]:
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{s2t-0.1.1 → s2t-0.1.2}/Makefile
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|