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:
parent
4cfb97a741
commit
4d91e691ad
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue