From 3217d2738af345629e7da14c52fa4ee5cb288fe9 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Mon, 18 Aug 2025 09:11:20 +0300 Subject: feat(config): per-provider temperature defaults and docs\n\n- Add , , to config with coding-friendly default 0.2.\n- Wire defaults through providers (OpenAI, Copilot, Ollama).\n- Update CLI and LSP runners to pass configured temperatures.\n- Document temperature behavior and examples in README.\n- Update config.json.example to show new keys. --- internal/llm/util.go | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 internal/llm/util.go (limited to 'internal/llm/util.go') diff --git a/internal/llm/util.go b/internal/llm/util.go new file mode 100644 index 0000000..b99d7c8 --- /dev/null +++ b/internal/llm/util.go @@ -0,0 +1,6 @@ +package llm + +import "errors" + +// small helper to keep return type consistent +func nilStringErr(msg string) (string, error) { return "", errors.New(msg) } -- cgit v1.2.3