2024-08-25 11:34:48 -04:00
# avante.nvim
2024-08-12 23:53:28 +08:00
2024-09-27 20:58:56 +08:00
[](https://neovim.io/)
[](https://github.com/yetone/avante.nvim/actions/workflows/ci.yaml)
2024-09-01 17:06:57 +08:00
2024-08-25 11:34:48 -04:00
**avante.nvim** is a Neovim plugin designed to emulate the behaviour of the [Cursor ](https://www.cursor.com ) AI IDE. It provides users with AI-driven code suggestions and the ability to apply these recommendations directly to their source files with minimal effort.
2024-08-12 23:53:28 +08:00
2024-08-15 14:38:11 +08:00
> [!NOTE]
2024-08-17 16:04:40 -04:00
>
2024-08-18 01:47:51 +08:00
> 🥰 This project is undergoing rapid iterations, and many exciting features will be added successively. Stay tuned!
2024-08-15 02:55:22 +08:00
https://github.com/user-attachments/assets/510e6270-b6cf-459d-9a2f-15b397d1fe53
2024-08-15 20:20:22 +08:00
https://github.com/user-attachments/assets/86140bfd-08b4-483d-a887-1b701d9e37dd
2024-08-12 23:53:28 +08:00
## Features
- **AI-Powered Code Assistance**: Interact with AI to ask questions about your current code file and receive intelligent suggestions for improvement or modification.
- **One-Click Application**: Quickly apply the AI's suggested changes to your source code with a single command, streamlining the editing process and saving time.
## Installation
2024-09-04 13:14:14 +08:00
For building binary if you wish to build from source, then `cargo` is required. Otherwise `curl` and `tar` will be used to get prebuilt binary from GitHub.
2024-09-03 06:53:14 -04:00
2024-08-29 20:00:18 -04:00
< details open >
2024-08-29 12:48:42 -04:00
2024-08-29 20:00:18 -04:00
< summary > < a href = "https://github.com/folke/lazy.nvim" > lazy.nvim< / a > (recommended)< / summary >
2024-08-29 12:48:42 -04:00
2024-08-31 23:43:58 +08:00
```lua
2024-08-17 15:14:30 +08:00
{
"yetone/avante.nvim",
event = "VeryLazy",
2024-08-29 01:09:26 -04:00
lazy = false,
2024-09-03 23:26:54 -04:00
version = false, -- set this if you want to always pull the latest change
2024-08-18 06:07:29 -04:00
opts = {
-- add any opts here
},
2024-09-03 23:14:46 -04:00
-- if you want to build from source then do `make BUILD_FROM_SOURCE=true`
build = "make",
2024-09-04 13:51:35 +08:00
-- build = "powershell -ExecutionPolicy Bypass -File Build.ps1 -BuildFromSource false" -- for windows
2024-08-17 15:14:30 +08:00
dependencies = {
2024-09-23 18:52:26 +08:00
"nvim-treesitter/nvim-treesitter",
2024-08-18 06:07:29 -04:00
"stevearc/dressing.nvim",
"nvim-lua/plenary.nvim",
2024-08-21 22:10:49 +08:00
"MunifTanjim/nui.nvim",
2024-08-28 13:49:16 -03:00
--- The below dependencies are optional,
"nvim-tree/nvim-web-devicons", -- or echasnovski/mini.icons
2024-08-29 23:36:39 -04:00
"zbirenbaum/copilot.lua", -- for providers='copilot'
2024-08-28 14:43:14 -04:00
{
-- support for image pasting
"HakonHarnes/img-clip.nvim",
event = "VeryLazy",
opts = {
-- recommended settings
default = {
embed_image_as_base64 = false,
prompt_for_file_name = false,
drag_and_drop = {
insert_mode = true,
},
2024-08-29 12:00:19 +08:00
-- required for Windows users
use_absolute_path = true,
2024-08-28 14:43:14 -04:00
},
},
},
2024-08-18 06:07:29 -04:00
{
2024-09-03 20:38:04 +01:00
-- Make sure to set this up properly if you have lazy=true
2024-08-17 22:33:40 +08:00
'MeanderingProgrammer/render-markdown.nvim',
opts = {
file_types = { "markdown", "Avante" },
},
ft = { "markdown", "Avante" },
},
2024-08-17 15:14:30 +08:00
},
}
2024-08-31 23:43:58 +08:00
```
2024-08-29 12:48:42 -04:00
< / details >
2024-08-15 14:38:11 +08:00
2024-08-29 12:48:42 -04:00
< details >
< summary > vim-plug< / summary >
2024-08-29 17:22:16 +02:00
```vim
" Deps
Plug 'stevearc/dressing.nvim'
Plug 'nvim-lua/plenary.nvim'
Plug 'MunifTanjim/nui.nvim'
" Optional deps
Plug 'nvim-tree/nvim-web-devicons' "or Plug 'echasnovski/mini.icons'
Plug 'HakonHarnes/img-clip.nvim'
2024-08-29 23:36:39 -04:00
Plug 'zbirenbaum/copilot.lua'
2024-08-29 17:22:16 +02:00
2024-09-03 06:20:53 -04:00
" Yay, pass source=true if you want to build from source
2024-09-15 10:44:39 -04:00
Plug 'yetone/avante.nvim', { 'branch': 'main', 'do': 'make' }
autocmd! User avante.nvim lua < < EOF
require('avante_lib').load()
EOF
2024-08-29 17:22:16 +02:00
```
2024-08-29 12:48:42 -04:00
< / details >
2024-08-29 20:00:18 -04:00
< details >
< summary > < a href = "https://github.com/echasnovski/mini.deps" > mini.deps< / a > < / summary >
```lua
2024-08-31 13:39:50 -04:00
local add, later, now = MiniDeps.add, MiniDeps.later, MiniDeps.now
2024-08-29 20:00:18 -04:00
add({
source = 'yetone/avante.nvim',
2024-08-31 13:39:50 -04:00
monitor = 'main',
2024-08-29 20:00:18 -04:00
depends = {
'stevearc/dressing.nvim',
'nvim-lua/plenary.nvim',
'MunifTanjim/nui.nvim',
'echasnovski/mini.icons'
},
2024-09-03 06:53:14 -04:00
hooks = { post_checkout = function() vim.cmd('AvanteBuild source=false') end }
2024-08-29 20:00:18 -04:00
})
--- optional
2024-08-29 23:36:39 -04:00
add({ source = 'zbirenbaum/copilot.lua' })
2024-08-29 20:00:18 -04:00
add({ source = 'HakonHarnes/img-clip.nvim' })
add({ source = 'MeanderingProgrammer/render-markdown.nvim' })
2024-08-31 13:39:50 -04:00
now(function() require('avante_lib').load() end)
2024-08-29 20:00:18 -04:00
later(function() require('render-markdown').setup({...}) end)
later(function()
require('img-clip').setup({...}) -- config img-clip
2024-08-29 23:36:39 -04:00
require("copilot").setup({...}) -- setup copilot to your liking
2024-08-29 20:00:18 -04:00
require("avante").setup({...}) -- config for avante.nvim
end)
```
< / details >
2024-08-29 12:48:42 -04:00
< details >
< summary > Lua< / summary >
2024-08-29 17:22:16 +02:00
```lua
-- deps:
require('img-clip').setup ({
-- use recommended settings from above
})
2024-08-29 23:36:39 -04:00
require('copilot').setup ({
-- use recommended settings from above
})
2024-08-29 17:22:16 +02:00
require('render-markdown').setup ({
-- use recommended settings from above
})
2024-09-03 04:09:13 -04:00
require('avante_lib').load()
2024-08-29 17:22:16 +02:00
require('avante').setup ({
-- Your config here!
})
```
2024-09-05 02:50:59 -04:00
> [!IMPORTANT]
>
> For `avante.tokenizers` and templates to work, make sure to call `require('avante_lib').load()` somewhere when entering the editor.
> We will leave the users to decide where it fits to do this, as this varies among configurations. (But we do recommend running this after where you set your colorscheme)
2024-10-29 00:55:59 -04:00
< / details >
2024-08-18 06:28:11 -04:00
> [!IMPORTANT]
>
2024-08-29 15:02:41 -04:00
> `avante.nvim` is currently only compatible with Neovim 0.10.1 or later. Please ensure that your Neovim version meets these requirements before proceeding.
2024-08-18 06:28:11 -04:00
2024-09-19 20:06:19 +08:00
> [!NOTE]
>
> Recommended **Neovim** options:
>
> ```lua
> -- views can only be fully collapsed with the global statusline
> vim.opt.laststatus = 3
2024-09-19 20:07:48 +08:00
> ```
2024-09-19 20:06:19 +08:00
2024-08-18 01:58:08 +08:00
> [!NOTE]
2024-08-17 15:14:30 +08:00
>
> `render-markdown.nvim` is an optional dependency that is used to render the markdown content of the chat history. Make sure to also include `Avante` as a filetype
2024-08-29 17:22:16 +02:00
> to its setup (e.g. via Lazy):
2024-08-17 15:14:30 +08:00
>
> ```lua
> {
2024-08-17 22:33:40 +08:00
> "MeanderingProgrammer/render-markdown.nvim",
2024-10-29 00:55:59 -04:00
> opts = { file_types = { "markdown", "Avante" } },
2024-08-17 15:14:30 +08:00
> ft = { "markdown", "Avante" },
> }
> ```
2024-08-31 13:39:50 -04:00
> [!TIP]
>
> Any rendering plugins that support markdown should work with Avante as long as you add the supported filetype `Avante`. See https://github.com/yetone/avante.nvim/issues/175 and [this comment](https://github.com/yetone/avante.nvim/issues/175#issuecomment-2313749363) for more information.
2024-08-29 17:22:16 +02:00
### Default setup configuration
2024-08-15 14:38:11 +08:00
2024-08-17 16:04:40 -04:00
_See [config.lua#L9 ](./lua/avante/config.lua ) for the full config_
2024-08-17 15:14:30 +08:00
```lua
{
2024-08-29 22:51:26 -07:00
---@alias Provider "claude" | "openai" | "azure" | "gemini" | "cohere" | "copilot" | string
2024-08-29 23:36:39 -04:00
provider = "claude", -- Recommend using Claude
2024-09-12 14:23:00 +08:00
auto_suggestions_provider = "claude", -- Since auto-suggestions are a high-frequency operation and therefore expensive, it is recommended to specify an inexpensive provider or even a free provider: copilot
2024-08-17 15:14:30 +08:00
claude = {
endpoint = "https://api.anthropic.com",
2024-10-22 14:05:52 -04:00
model = "claude-3-5-sonnet-20241022",
2024-08-17 15:14:30 +08:00
temperature = 0,
max_tokens = 4096,
},
2024-09-03 14:03:59 +08:00
behaviour = {
auto_suggestions = false, -- Experimental stage
auto_set_highlight_group = true,
auto_set_keymaps = true,
auto_apply_diff_after_generation = false,
support_paste_from_clipboard = false,
},
2024-08-17 15:14:30 +08:00
mappings = {
2024-08-17 16:04:40 -04:00
--- @class AvanteConflictMappings
2024-08-17 15:14:30 +08:00
diff = {
ours = "co",
theirs = "ct",
2024-08-29 20:32:00 +08:00
all_theirs = "ca",
2024-08-17 15:14:30 +08:00
both = "cb",
2024-08-28 23:25:45 -07:00
cursor = "cc",
2024-08-17 15:14:30 +08:00
next = "]x",
prev = "[x",
2024-08-15 21:04:06 +08:00
},
2024-09-03 14:03:59 +08:00
suggestion = {
accept = "< M-l > ",
next = "< M- ] > ",
prev = "< M- [ > ",
dismiss = "< C- ] > ",
},
2024-08-17 16:04:40 -04:00
jump = {
next = "]]",
prev = "[[",
},
2024-08-26 12:26:29 +08:00
submit = {
normal = "< CR > ",
insert = "< C-s > ",
},
2024-09-14 20:42:55 +02:00
sidebar = {
2024-10-12 03:41:08 -07:00
apply_all = "A",
apply_cursor = "a",
2024-09-14 20:42:55 +02:00
switch_windows = "< Tab > ",
reverse_switch_windows = "< S-Tab > ",
},
2024-08-17 16:04:40 -04:00
},
2024-08-19 06:11:02 -04:00
hints = { enabled = true },
2024-08-17 16:04:40 -04:00
windows = {
2024-09-01 16:25:52 +08:00
---@type "right" | "left" | "top" | "bottom"
position = "right", -- the position of the sidebar
2024-08-22 01:48:40 -04:00
wrap = true, -- similar to vim.o.wrap
2024-08-17 16:04:40 -04:00
width = 30, -- default % based on available width
2024-08-21 23:33:54 +08:00
sidebar_header = {
2024-10-20 20:42:07 +01:00
enabled = true, -- true, false to enable/disable the header
2024-08-21 23:33:54 +08:00
align = "center", -- left, center, right for title
rounded = true,
},
2024-10-14 20:22:34 -07:00
input = {
prefix = "> ",
},
edit = {
border = "rounded",
start_insert = true, -- Start insert mode when opening the edit window
},
ask = {
floating = false, -- Open the 'AvanteAsk' prompt in a floating window
2024-11-03 01:46:40 -07:00
start_insert = true, -- Start insert mode when opening the ask window
2024-10-14 20:22:34 -07:00
border = "rounded",
2024-11-02 03:33:08 -07:00
---@type "ours" | "theirs"
focus_on_apply = "ours", -- which diff to focus after applying
2024-10-14 20:22:34 -07:00
},
2024-08-17 16:04:40 -04:00
},
2024-08-20 01:57:24 +08:00
highlights = {
---@type AvanteConflictHighlights
diff = {
current = "DiffText",
incoming = "DiffAdd",
},
},
2024-08-17 16:04:40 -04:00
--- @class AvanteConflictUserConfig
diff = {
autojump = true,
---@type string | fun(): any
list_opener = "copen",
2024-11-02 03:31:54 -07:00
--- Override the 'timeoutlen' setting while hovering over a diff (see :help timeoutlen).
--- Helps to avoid entering operator-pending mode with diff mappings starting with `c` .
--- Disable by setting to -1.
override_timeoutlen = 500,
2024-08-17 15:14:30 +08:00
},
}
```
2024-08-15 04:04:04 +08:00
2024-08-12 23:53:28 +08:00
## Usage
Given its early stage, `avante.nvim` currently supports the following basic functionalities:
2024-08-23 00:21:30 -04:00
> [!IMPORTANT]
>
2024-08-28 20:51:20 +08:00
> Avante will only support Claude, and OpenAI (and its variants including azure)out-of-the-box due to its high code quality generation.
2024-08-23 00:21:30 -04:00
> For all OpenAI-compatible providers, see [wiki](https://github.com/yetone/avante.nvim/wiki) for more details.
2024-08-28 20:51:20 +08:00
> [!IMPORTANT]
>
> Due to the poor performance of other models, avante.nvim only recommends using the claude-3.5-sonnet model.
> All features can only be guaranteed to work properly on the claude-3.5-sonnet model.
> We do not accept changes to the code or prompts to accommodate other models. Otherwise, it will greatly increase our maintenance costs.
> We hope everyone can understand. Thank you!
2024-08-17 16:04:40 -04:00
> [!IMPORTANT]
>
> For most consistency between neovim session, it is recommended to set the environment variables in your shell file.
> By default, `Avante` will prompt you at startup to input the API key for the provider you have selected.
>
> For Claude:
>
> ```sh
> export ANTHROPIC_API_KEY=your-api-key
> ```
>
> For OpenAI:
>
> ```sh
> export OPENAI_API_KEY=your-api-key
> ```
>
> For Azure OpenAI:
>
> ```sh
> export AZURE_OPENAI_API_KEY=your-api-key
> ```
2024-08-15 13:44:25 +08:00
2024-08-17 16:04:40 -04:00
1. Open a code file in Neovim.
2. Use the `:AvanteAsk` command to query the AI about the code.
3. Review the AI's suggestions.
4. Apply the recommended changes directly to your code with a simple command or key binding.
2024-08-12 23:53:28 +08:00
**Note**: The plugin is still under active development, and both its functionality and interface are subject to significant changes. Expect some rough edges and instability as the project evolves.
## Key Bindings
The following key bindings are available for use with `avante.nvim` :
2024-10-15 10:24:48 +07:00
| Key Binding | Description |
| ----------------------------------------- | -------------------------------------------- |
| < kbd > Leader< / kbd > < kbd > a< / kbd > < kbd > a< / kbd > | show sidebar |
| < kbd > Leader< / kbd > < kbd > a< / kbd > < kbd > r< / kbd > | refresh sidebar |
| < kbd > Leader< / kbd > < kbd > a< / kbd > < kbd > f< / kbd > | switch sidebar focus |
| < kbd > Leader< / kbd > < kbd > a< / kbd > < kbd > e< / kbd > | edit selected blocks |
| < kbd > c< / kbd > < kbd > o< / kbd > | choose ours |
| < kbd > c< / kbd > < kbd > t< / kbd > | choose theirs |
| < kbd > c< / kbd > < kbd > a< / kbd > | choose all theirs |
| < kbd > c< / kbd > < kbd > 0< / kbd > | choose none |
| < kbd > c< / kbd > < kbd > b< / kbd > | choose both |
| < kbd > c< / kbd > < kbd > c< / kbd > | choose cursor |
| < kbd > ]< / kbd > < kbd > x< / kbd > | move to previous conflict |
| < kbd > [< / kbd > < kbd > x< / kbd > | move to next conflict |
| < kbd > [< / kbd > < kbd > [< / kbd > | jump to previous codeblocks (results window) |
| < kbd > ]< / kbd > < kbd > ]< / kbd > | jump to next codeblocks (results windows) |
2024-08-12 23:53:28 +08:00
2024-08-28 23:56:00 -04:00
> [!NOTE]
>
> If you are using `lazy.nvim`, then all keymap here will be safely set, meaning if `<leader>aa` is already binded, then avante.nvim won't bind this mapping.
2024-08-29 01:09:26 -04:00
> In this case, user will be responsible for setting up their own. See [notes on keymaps](https://github.com/yetone/avante.nvim/wiki#keymaps-and-api-i-guess) for more details.
2024-08-28 23:56:00 -04:00
2024-08-24 20:15:45 -04:00
## Highlight Groups
2024-10-15 10:24:48 +07:00
| Highlight Group | Description | Notes |
| --------------------------- | --------------------------------------------- | -------------------------------------------- |
| AvanteTitle | Title | |
| AvanteReversedTitle | Used for rounded border | |
| AvanteSubtitle | Selected code title | |
| AvanteReversedSubtitle | Used for rounded border | |
| AvanteThirdTitle | Prompt title | |
| AvanteReversedThirdTitle | Used for rounded border | |
| AvanteConflictCurrent | Current conflict highlight | Default to `Config.highlights.diff.current` |
| AvanteConflictIncoming | Incoming conflict highlight | Default to `Config.highlights.diff.incoming` |
| AvanteConflictCurrentLabel | Current conflict label highlight | Default to shade of `AvanteConflictCurrent` |
| AvanteConflictIncomingLabel | Incoming conflict label highlight | Default to shade of `AvanteConflictIncoming` |
| AvantePopupHint | Usage hints in popup menus | |
| AvanteInlineHint | The end-of-line hint displayed in visual mode | |
2024-08-27 13:52:46 -04:00
See [highlights.lua ](./lua/avante/highlights.lua ) for more information
2024-08-24 20:15:45 -04:00
2024-09-03 04:09:13 -04:00
## Custom prompts
By default, `avante.nvim` provides three different modes to interact with: `planning` , `editing` , and `suggesting` , followed with three different prompts per mode.
- `planning` : Used with `require("avante").toggle()` on sidebar
- `editing` : Used with `require("avante").edit()` on selection codeblock
- `suggesting` : Used with `require("avante").get_suggestion():suggest()` on Tab flow.
Users can customize the system prompts via `Config.system_prompt` . We recommend calling this in a custom Autocmds depending on your need:
```lua
vim.api.nvim_create_autocmd("User", {
pattern = "ToggleMyPrompt"
callback = function() require("avante.config").override({system_prompt = "MY CUSTOM SYSTEM PROMPT"}) end,
})
vim.keymap.set("n", "< leader > am", function() vim.api.nvim_exec_autocmds("User", { pattern = "ToggleMyPrompt" }) end, { desc = "avante: toggle my prompt" })
```
If one wish to custom prompts for each mode, `avante.nvim` will check for project root based on the given buffer whether it contains
the following patterns: `*.{mode}.avanterules` .
The rules for root hierarchy:
2024-10-15 10:24:48 +07:00
2024-09-03 04:09:13 -04:00
- lsp workspace folders
- lsp root_dir
- root pattern of filename of the current buffer
- root pattern of cwd
< details >
< summary > Example folder structure for custom prompt< / summary >
If you have the following structure:
2024-10-15 10:24:48 +07:00
```bash
2024-09-03 04:09:13 -04:00
.
├── .git/
├── typescript.planning.avanterules
├── snippets.editing.avanterules
└── src/
2024-10-15 10:24:48 +07:00
```
2024-09-03 04:09:13 -04:00
- `typescript.planning.avanterules` will be used for `planning` mode
- `snippets.editing.avanterules`` will be used for ` editing` mode
- the default `suggesting` prompt from `avante.nvim` will be used for `suggesting` mode.
< / details >
> [!important]
>
> `*.avanterules` is a jinja template file, in which will be rendered using [minijinja](https://github.com/mitsuhiko/minijinja). See [templates](https://github.com/yetone/avante.nvim/blob/main/lua/avante/templates) for example on how to extend current templates.
2024-08-15 04:11:10 +08:00
## TODOs
- [x] Chat with current file
- [x] Apply diff patch
2024-08-18 01:50:29 +08:00
- [x] Chat with the selected block
2024-08-23 02:01:14 -04:00
- [x] Slash commands
2024-08-27 22:44:40 +08:00
- [x] Edit the selected block
2024-09-03 04:09:13 -04:00
- [x] Smart Tab (Cursor Flow)
2024-09-23 18:52:26 +08:00
- [x] Chat with project (You can use `@codebase` to chat with the whole project)
2024-11-03 16:38:52 +08:00
- [ ] CoT
2024-08-15 04:11:10 +08:00
- [ ] Chat with selected files
2024-08-26 16:14:54 +08:00
## Roadmap
- **Enhanced AI Interactions**: Improve the depth of AI analysis and recommendations for more complex coding scenarios.
2024-08-26 16:17:02 +08:00
- **LSP + Tree-sitter + LLM Integration**: Integrate with LSP and Tree-sitter and LLM to provide more accurate and powerful code suggestions and analysis.
2024-08-26 16:14:54 +08:00
2024-08-12 23:53:28 +08:00
## Contributing
Contributions to avante.nvim are welcome! If you're interested in helping out, please feel free to submit pull requests or open issues. Before contributing, ensure that your code has been thoroughly tested.
2024-08-19 19:19:45 -04:00
See [wiki ](https://github.com/yetone/avante.nvim/wiki ) for more recipes and tricks.
2024-08-19 08:35:36 -04:00
2024-08-28 12:27:06 +08:00
## Acknowledgments
We would like to express our heartfelt gratitude to the contributors of the following open-source projects, whose code has provided invaluable inspiration and reference for the development of avante.nvim:
2024-10-15 10:24:48 +07:00
| Nvim Plugin | License | Functionality | Location |
| --------------------------------------------------------------------- | ------------------ | ----------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- |
| [git-conflict.nvim ](https://github.com/akinsho/git-conflict.nvim ) | No License | Diff comparison functionality | [lua/avante/diff.lua ](https://github.com/yetone/avante.nvim/blob/main/lua/avante/diff.lua ) |
| [ChatGPT.nvim ](https://github.com/jackMort/ChatGPT.nvim ) | Apache 2.0 License | Calculation of tokens count | [lua/avante/utils/tokens.lua ](https://github.com/yetone/avante.nvim/blob/main/lua/avante/utils/tokens.lua ) |
| [img-clip.nvim ](https://github.com/HakonHarnes/img-clip.nvim ) | MIT License | Clipboard image support | [lua/avante/clipboard.lua ](https://github.com/yetone/avante.nvim/blob/main/lua/avante/clipboard.lua ) |
| [copilot.lua ](https://github.com/zbirenbaum/copilot.lua ) | MIT License | Copilot support | [lua/avante/providers/copilot.lua ](https://github.com/yetone/avante.nvim/blob/main/lua/avante/providers/copilot.lua ) |
| [jinja.vim ](https://github.com/HiPhish/jinja.vim ) | MIT License | Template filetype support | [syntax/jinja.vim ](https://github.com/yetone/avante.nvim/blob/main/syntax/jinja.vim ) |
| [codecompanion.nvim ](https://github.com/olimorris/codecompanion.nvim ) | MIT License | Secrets logic support | [lua/avante/providers/init.lua ](https://github.com/yetone/avante.nvim/blob/main/lua/avante/providers/init.lua ) |
| [aider ](https://github.com/paul-gauthier/aider ) | Apache 2.0 License | Planning mode user prompt | [lua/avante/templates/planning.avanterules ](https://github.com/yetone/avante.nvim/blob/main/lua/avante/templates/planning.avanterules ) |
2024-08-28 12:27:06 +08:00
The high quality and ingenuity of these projects' source code have been immensely beneficial throughout our development process. We extend our sincere thanks and respect to the authors and contributors of these projects. It is the selfless dedication of the open-source community that drives projects like avante.nvim forward.
2024-08-18 22:20:29 -04:00
2024-08-12 23:53:28 +08:00
## License
2024-08-28 22:26:22 +08:00
avante.nvim is licensed under the Apache 2.0 License. For more details, please refer to the [LICENSE ](./LICENSE ) file.