avante saves the day

This commit is contained in:
Osman Faruk Bayram 2025-06-19 03:13:19 +03:00
parent a5cf35dec0
commit bb8391d7d9

15
config/plugins/avante.nix Normal file
View file

@ -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";
};
};
};
}