How to chat in Avante without access to any of my (proprietary) code? #950
-
Is there a way to invoke Avante and chat with e.g. Claude's models - but without having Avante supply the LLM with any code in opened buffers or in my project etc? In my case I'm working on proprietary code, and I need to make sure it doesn't get sent to an LLM. Can I perhaps invoke If I just invoke Note For anyone else reading this, who might want the same feature; codecompanion.nvim does not default to sending off your code to the LLM. You have to specifically type in |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
For me it doesn't close the chat but can continue chatting in that session, however the moment I toggle sidebar it adds the file again which can be unnecessary and unrelated context to the chat you are having. |
Beta Was this translation helpful? Give feedback.
-
I was looking at the source to implement this but turns out it's an existing option (sad there is no
|
Beta Was this translation helpful? Give feedback.
I was looking at the source to implement this but turns out it's an existing option (sad there is no
:h avante
that oculd have shown this) to achieve that:lua require("avante.api").ask({ without_selection = true; })