Skip to content

Commit

Permalink
chore(provider): update supported LLM list (yetone#386)
Browse files Browse the repository at this point in the history
  • Loading branch information
cosn authored Aug 30, 2024
1 parent 483f71d commit b7127b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ _See [config.lua#L9](./lua/avante/config.lua) for the full config_
```lua
{
---@alias Provider "openai" | "claude" | "azure" | "cohere" | [string]
---@alias Provider "claude" | "openai" | "azure" | "gemini" | "cohere" | "copilot" | string
provider = "claude", -- Recommend using Claude
claude = {
endpoint = "https://api.anthropic.com",
Expand Down
2 changes: 1 addition & 1 deletion lua/avante/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ local M = {}
---@field silent_warning boolean will be determined from debug
M.defaults = {
debug = false,
---@alias Provider "claude" | "openai" | "azure" | "gemini" | "cohere" | string
---@alias Provider "claude" | "openai" | "azure" | "gemini" | "cohere" | "copilot" | string
provider = "claude", -- Only recommend using Claude
---@type AvanteSupportedProvider
openai = {
Expand Down

0 comments on commit b7127b3

Please sign in to comment.