From 6d29ac7e4b2604b5c7df50f33f8ef2357709faf2 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Mon, 18 Aug 2025 09:13:41 +0300 Subject: feat(lsp): add coding_temperature knob and remove hardcoded temps\n\n- Add to app config and server options.\n- Use in LSP code actions and completions.\n- Default to provider temperature when not set.\n- Update README and config.json.example. --- internal/hexailsp/run.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'internal/hexailsp') diff --git a/internal/hexailsp/run.go b/internal/hexailsp/run.go index 2eee3aa..1beb93a 100644 --- a/internal/hexailsp/run.go +++ b/internal/hexailsp/run.go @@ -83,6 +83,8 @@ func RunWithFactory(logPath string, stdin io.Reader, stdout io.Writer, logger *l WindowLines: cfg.ContextWindowLines, MaxContextTokens: cfg.MaxContextTokens, + CodingTemperature: cfg.CodingTemperature, + Client: client, TriggerCharacters: cfg.TriggerCharacters, }) -- cgit v1.2.3