From bb8391d7d9518e85fcd4dd621f81b577ee24e52d Mon Sep 17 00:00:00 2001 From: osbm Date: Thu, 19 Jun 2025 03:13:19 +0300 Subject: [PATCH] avante saves the day --- config/plugins/avante.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 config/plugins/avante.nix diff --git a/config/plugins/avante.nix b/config/plugins/avante.nix new file mode 100644 index 0000000..273fec4 --- /dev/null +++ b/config/plugins/avante.nix @@ -0,0 +1,15 @@ +{ + plugins.avante.settings = { + provider = "claude"; + providers = { + claude = { + endpoint = "https://api.anthropic.com"; + extra_request_body = { + max_tokens = 4096; + temperature = 0; + }; + model = "claude-3-5-sonnet-20240620"; + }; + }; + }; +}