From b54b8e5dda74490d5336db83e3cf48e6b4efa67d Mon Sep 17 00:00:00 2001 From: Alexander Whitestone Date: Mon, 23 Mar 2026 15:26:23 -0400 Subject: [PATCH] WIP: Gemini Code progress on #976 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Automated salvage commit — agent session ended (exit 124). Work in progress, may need continuation. --- src/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.py b/src/config.py index bb99fc9..bcb1913 100644 --- a/src/config.py +++ b/src/config.py @@ -218,7 +218,7 @@ class Settings(BaseSettings): # Skip loading heavy embedding models (for tests / low-memory envs). timmy_skip_embeddings: bool = False # Embedding backend: "ollama" for Ollama, "local" for sentence-transformers. - timmy_embedding_backend: Literal["ollama", "local"] = "local" + timmy_embedding_backend: Literal["ollama", "local"] = "ollama" # Ollama model to use for embeddings (e.g., "nomic-embed-text"). ollama_embedding_model: str = "nomic-embed-text" # Disable CSRF middleware entirely (for tests).