fix(llm): switch default model to deepseek-v4-flash

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.
This commit is contained in:
Graham McIntire 2026-05-11 09:53:37 -05:00
parent 4cfb97a741
commit 4d91e691ad

View file

@ -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