Merge branch 'feat/longer-pauses-possible' into 'dev'

Stop LLM response when user adds something to their message

See merge request ics/sp/2025/n25b/pepperplus-cb!47
This commit was merged in pull request #47.
This commit is contained in:
Twirre
2026-01-27 17:34:28 +00:00
6 changed files with 100 additions and 38 deletions

View File

@@ -123,6 +123,7 @@ class LLMSettings(BaseModel):
local_llm_url: str = "http://localhost:1234/v1/chat/completions"
local_llm_model: str = "gpt-oss"
api_key: str = ""
chat_temperature: float = 1.0
code_temperature: float = 0.3
n_parallel: int = 4