Replies: 4 comments 7 replies
|
I'd welcome a PR for this. You can update the |
|
Do you know the full model names? |
|
Actually there is no full model list. |
|
Sorry to revive this closed discussion, but could you explain how selecting models ought to be done in the config? return {
{
"olimorris/codecompanion.nvim",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-treesitter/nvim-treesitter",
},
config = function()
require("codecompanion").setup({
strategies = {
chat = { adapter = "copilot" },
inline = { adapter = "copilot" },
},
opts = {
log_level = "DEBUG",
},
})
end,
},
}…I’m blocked figuring out what I’m supposed to do beyond this - I see the models are listed in the copilot adapters, but I’m not quite clear what I must do to pick which model to use. Other question (lmk if this requires a separate thread): is there any way to retrieve a chat history and its context? I reckon it’s probably possible, but I can’t find how to do it either. |
Uh oh!
There was an error while loading. Please reload this page.
Hi!

In recent update, we can choose multiple models on Copilot!
I'd like to use it in codecompanion just like we can choose models on ollama
All reactions