Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions lua/CopilotChat/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
---@field tools string|table<string>|nil
---@field resources string|table<string>|nil
---@field sticky string|table<string>|nil
---@field diff 'block'|'unified'?
---@field language string?
---@field temperature number?
---@field headless boolean?
Expand Down Expand Up @@ -62,6 +63,7 @@ return {
tools = nil, -- Default tool or array of tools (or groups) to share with LLM (can be specified manually in prompt via @).
resources = 'selection', -- Default resources to share with LLM (can be specified manually in prompt via #).
sticky = nil, -- Default sticky prompt or array of sticky prompts to use at start of every new chat (can be specified manually in prompt via >).
diff = 'block', -- Default diff format to use, 'block' or 'unified'.
language = 'English', -- Default language to use for answers

temperature = 0.1, -- Result temperature
Expand Down
Loading
Loading