This commit is contained in:
2025-02-20 19:20:58 -08:00
parent d3ace6bbc8
commit 9bae49fa30
3 changed files with 12 additions and 11 deletions

View File

@@ -10,6 +10,7 @@ return {
copilot = function()
return require("codecompanion.adapters").extend("copilot", {
schema = {
name = "copilot",
model = {
default = "claude-3.5-sonnet",
-- default = "o3-mini-2025-01-31",
@@ -22,9 +23,9 @@ return {
"gemini-2.0-flash-001",
},
},
max_tokens = {
default = 65536,
},
-- max_tokens = {
-- default = 65536,
-- },
},
})
end,
@@ -76,7 +77,7 @@ return {
show_header_separator = false, -- Show header separators in the chat buffer? Set this to false if you're using an external markdown formatting plugin
separator = "", -- The separator between the different messages in the chat buffer
show_references = true, -- Show references (from slash commands and variables) in the chat buffer?
show_settings = true, -- Show LLM settings at the top of the chat buffer?
show_settings = false, -- Show LLM settings at the top of the chat buffer?
show_token_count = true, -- Show the token count for each response?
start_in_insert_mode = false, -- Open the chat buffer in insert mode?
},