fix(llm): switch to deepseek-chat (standard model, no reasoning overhead)

deepseek-v4-flash is still a reasoning variant and burns tokens on
chain-of-thought before producing content. deepseek-chat produces output
directly — 82 tokens all went to content in testing, vs 85-102 tokens
that produced empty observations on flash.
This commit is contained in:
Graham McIntire 2026-05-11 10:23:18 -05:00
parent 4bca41a700
commit 9a10e01a24

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-flash"
@default_model "deepseek-chat"
@receive_timeout 120_000
@impl true