From 4d91e691adc43e28cb908bd9f81d97576593d275 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Mon, 11 May 2026 09:53:37 -0500 Subject: [PATCH] fix(llm): switch default model to deepseek-v4-flash MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit deepseek-v4-pro is a reasoning model that burns tokens on chain-of-thought before producing content. The flash variant is faster, cheaper, and doesn't starve the content output — a better fit for summarization and observation generation tasks. --- lib/towerops/llm/deepseek.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/towerops/llm/deepseek.ex b/lib/towerops/llm/deepseek.ex index 594c71dc..b35964c7 100644 --- a/lib/towerops/llm/deepseek.ex +++ b/lib/towerops/llm/deepseek.ex @@ -13,7 +13,7 @@ defmodule Towerops.LLM.DeepSeek do @behaviour Towerops.LLM.Behaviour @default_base_url "https://api.deepseek.com/v1" - @default_model "deepseek-v4-pro" + @default_model "deepseek-v4-flash" @receive_timeout 120_000 @impl true