Skip to content

Commit

Permalink
tests/avante: remove deprecated model option local
Browse files Browse the repository at this point in the history
  • Loading branch information
GaetanLepage committed Nov 20, 2024
1 parent 5f0b337 commit 2f71c42
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
2 changes: 1 addition & 1 deletion plugins/by-name/avante/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ lib, ... }:
let
inherit (lib.nixvim) defaultNullOpts mkNullOrOption' toLuaObject;
inherit (lib.nixvim) defaultNullOpts mkNullOrOption';
in
lib.nixvim.neovim-plugin.mkNeovimPlugin {
name = "avante";
Expand Down
5 changes: 0 additions & 5 deletions tests/test-sources/plugins/by-name/avante/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
timeout = 30000;
temperature = 0;
max_tokens = 4096;
local = false;
};
copilot = {
endpoint = "https://api.githubcopilot.com";
Expand All @@ -39,31 +38,27 @@
timeout = 30000;
temperature = 0;
max_tokens = 4096;
local = false;
};
claude = {
endpoint = "https://api.anthropic.com";
model = "claude-3-5-sonnet-20240620";
timeout = 30000;
temperature = 0;
max_tokens = 8000;
local = false;
};
gemini = {
endpoint = "https://generativelanguage.googleapis.com/v1beta/models";
model = "gemini-1.5-flash-latest";
timeout = 30000;
temperature = 0;
max_tokens = 4096;
local = false;
};
cohere = {
endpoint = "https://api.cohere.com/v1";
model = "command-r-plus-08-2024";
timeout = 30000;
temperature = 0;
max_tokens = 4096;
local = false;
};
vendors = { };
behaviour = {
Expand Down

0 comments on commit 2f71c42

Please sign in to comment.