Use values from settings.yaml #8
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
There are some places in code where information are hardcoded. The same information are in the settings.yaml.
Example: model_path: models/ggml-model.bin
src/transcription/whisper_service.py: model_path: str = "/app/models/ggml-model.bin",
This should be: model_path: str = "/app/" + config.model_path
Check the whole repo for similar cases and fix them