From f361e7599d9a11ad3397b7b6bffee151ab9bdde9 Mon Sep 17 00:00:00 2001 From: Tyler Hoang Date: Fri, 8 May 2026 02:16:19 -0700 Subject: Fix startup error and improve category dropdown readability - Give ollama_timeout a default of 120s so the app starts without it in .env - Style select option elements to match dark theme, fixing low contrast in dropdown Co-Authored-By: Claude Sonnet 4.6 --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'config.py') diff --git a/config.py b/config.py index 8472e66..1f06627 100644 --- a/config.py +++ b/config.py @@ -5,7 +5,7 @@ class Settings(BaseSettings): ollama_host: str model_name: str database_url: str - ollama_timeout: int + ollama_timeout: int = 120 class Config: env_file = ".env" -- cgit v1.3-2-g0d8e