summaryrefslogtreecommitdiff
path: root/internal/hexailsp
diff options
context:
space:
mode:
authorPaul Bütow <1224732+snonux@users.noreply.github.com>2026-02-02 20:55:36 +0200
committerGitHub <noreply@github.com>2026-02-02 20:55:36 +0200
commitc8dd76141098a66767883c6eb21dd47ebcf10269 (patch)
tree4887ab977b8a92165e180dd3d3c7323df7e6172b /internal/hexailsp
parent28e2d1a7729e4d434e47006a1932eeb75821aadc (diff)
parent97c48711ce0c42bcf39aab1f88b54985a9744b8e (diff)
Merge pull request #2 from florianbuetow/feature-timeout-config
feat: add configurable request timeout for LLM calls
Diffstat (limited to 'internal/hexailsp')
-rw-r--r--internal/hexailsp/run.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/hexailsp/run.go b/internal/hexailsp/run.go
index 1afa70a..47ed648 100644
--- a/internal/hexailsp/run.go
+++ b/internal/hexailsp/run.go
@@ -109,6 +109,7 @@ func buildClientIfNil(cfg appconfig.App, client llm.Client) llm.Client {
}
llmCfg := llm.Config{
Provider: cfg.Provider,
+ RequestTimeout: cfg.RequestTimeout,
OpenAIBaseURL: cfg.OpenAIBaseURL,
OpenAIModel: cfg.OpenAIModel,
OpenAITemperature: cfg.OpenAITemperature,