Skip to content

Commit

Permalink
config: move default models
Browse files Browse the repository at this point in the history
  • Loading branch information
phlmn committed Jan 17, 2025
1 parent b0dc59b commit 3208fbf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion backend/transcribee_backend/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ class Settings(BaseSettings):
media_url_base = "http://localhost:8000/"
logged_out_redirect_url: None | str = None

model_config_path: Path = Path("data/models.json")
model_config_path: Path = Path(__file__).parent.resolve() / Path(
"default_models.json"
)
pages_dir: Path = Path("data/pages/")

metrics_username = "transcribee"
Expand Down
File renamed without changes.

0 comments on commit 3208fbf

Please sign in to comment.