Replies: 4 comments 4 replies
-
I'd welcome a PR for this. You can update the |
Beta Was this translation helpful? Give feedback.
-
Do you know the full model names? |
Beta Was this translation helpful? Give feedback.
-
Actually there is no full model list. |
Beta Was this translation helpful? Give feedback.
-
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. |
Beta Was this translation helpful? Give feedback.
-
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
Beta Was this translation helpful? Give feedback.
All reactions