osbm-nvim/config/plugins/avante.nix
2025-06-19 03:13:19 +03:00

15 lines
329 B
Nix

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