diff --git a/docs-preview-960/highlightjs/LICENSE b/docs-preview-961/highlightjs/LICENSE
similarity index 100%
rename from docs-preview-960/highlightjs/LICENSE
rename to docs-preview-961/highlightjs/LICENSE
diff --git a/docs-preview-960/highlightjs/highlight.pack.js b/docs-preview-961/highlightjs/highlight.pack.js
similarity index 100%
rename from docs-preview-960/highlightjs/highlight.pack.js
rename to docs-preview-961/highlightjs/highlight.pack.js
diff --git a/docs-preview-960/highlightjs/loader.js b/docs-preview-961/highlightjs/loader.js
similarity index 100%
rename from docs-preview-960/highlightjs/loader.js
rename to docs-preview-961/highlightjs/loader.js
diff --git a/docs-preview-960/highlightjs/mono-blue.css b/docs-preview-961/highlightjs/mono-blue.css
similarity index 100%
rename from docs-preview-960/highlightjs/mono-blue.css
rename to docs-preview-961/highlightjs/mono-blue.css
diff --git a/docs-preview-960/index.xhtml b/docs-preview-961/index.xhtml
similarity index 100%
rename from docs-preview-960/index.xhtml
rename to docs-preview-961/index.xhtml
diff --git a/docs-preview-960/options.html b/docs-preview-961/options.html
similarity index 99%
rename from docs-preview-960/options.html
rename to docs-preview-961/options.html
index d5fc63df..d7e24942 100644
--- a/docs-preview-960/options.html
+++ b/docs-preview-961/options.html
@@ -899,6 +899,64 @@ null or string
Default:
null
+Declared by:
+
+
+
+
+ vim.assistant.avante-nvim.setupOpts.providers
+
+
+
+
+Define settings for builtin and custom providers.
+
+Type:
+null or (attribute set)
+
+Default:
+null
+
+Example:
openai = {
+ endpoint = "https://api.openai.com/v1";
+ model = "gpt-4o"; # your desired model (or use gpt-4o, etc.)
+ timeout = 30000; # Timeout in milliseconds, increase this for reasoning models
+ extra_request_body = {
+ temperature = 0;
+ max_completion_tokens = 8192; # Increase this to include reasoning tokens (for reasoning models)
+ reasoning_effort = "medium"; # low|medium|high, only used for reasoning models
+ };
+ };
+ ollama = {
+ endpoint = "http://127.0.0.1:11434";
+ timeout = 30000; # Timeout in milliseconds
+ extra_request_body = {
+ options = {
+ temperature = 0.75;
+ num_ctx = 20480;
+ keep_alive = "5m";
+ };
+ };
+ };
+ groq = {
+ __inherited_from = "openai";
+ api_key_name = "GROQ_API_KEY";
+ endpoint = "https://api.groq.com/openai/v1/";
+ model = "llama-3.3-70b-versatile";
+ disable_tools = true;
+ extra_request_body = {
+ temperature = 1;
+ max_tokens = 32768; # remember to increase this value, otherwise it will stop generating halfway
+ };
+ };
+
+
Declared by:
|
@@ -947,48 +1005,6 @@ signed integer
Default:
600
-Declared by:
-
-
-
-
- vim.assistant.avante-nvim.setupOpts.vendors
-
-
-
-
-Define Your Custom providers.
-
-Type:
-null or (attribute set)
-
-Default:
-null
-
-Example: ollama = {
- __inherited_from = "openai";
- api_key_name = "";
- endpoint = "http://127.0.0.1:11434/v1";
- model = "qwen2.5u-coder:7b";
- max_tokens = 4096;
- disable_tools = true;
-};
-ollama_ds = {
- __inherited_from = "openai";
- api_key_name = "";
- endpoint = "http://127.0.0.1:11434/v1";
- model = "deepseek-r1u:7b";
- max_tokens = 4096;
- disable_tools = true;
-};
-
-
Declared by:
|
diff --git a/docs-preview-960/quirks.html b/docs-preview-961/quirks.html
similarity index 100%
rename from docs-preview-960/quirks.html
rename to docs-preview-961/quirks.html
diff --git a/docs-preview-960/release-notes.html b/docs-preview-961/release-notes.html
similarity index 100%
rename from docs-preview-960/release-notes.html
rename to docs-preview-961/release-notes.html
diff --git a/docs-preview-960/script/anchor-min.js b/docs-preview-961/script/anchor-min.js
similarity index 100%
rename from docs-preview-960/script/anchor-min.js
rename to docs-preview-961/script/anchor-min.js
diff --git a/docs-preview-960/script/anchor-use.js b/docs-preview-961/script/anchor-use.js
similarity index 100%
rename from docs-preview-960/script/anchor-use.js
rename to docs-preview-961/script/anchor-use.js
diff --git a/docs-preview-960/script/search.js b/docs-preview-961/script/search.js
similarity index 100%
rename from docs-preview-960/script/search.js
rename to docs-preview-961/script/search.js
diff --git a/docs-preview-960/style.css b/docs-preview-961/style.css
similarity index 100%
rename from docs-preview-960/style.css
rename to docs-preview-961/style.css
diff --git a/options.html b/options.html
index d5fc63df..d7e24942 100644
--- a/options.html
+++ b/options.html
@@ -899,6 +899,64 @@ null or string
Default:
null
+Declared by:
+
+
+
+
+ vim.assistant.avante-nvim.setupOpts.providers
+
+
+
+
+Define settings for builtin and custom providers.
+
+Type:
+null or (attribute set)
+
+Default:
+null
+
+Example: openai = {
+ endpoint = "https://api.openai.com/v1";
+ model = "gpt-4o"; # your desired model (or use gpt-4o, etc.)
+ timeout = 30000; # Timeout in milliseconds, increase this for reasoning models
+ extra_request_body = {
+ temperature = 0;
+ max_completion_tokens = 8192; # Increase this to include reasoning tokens (for reasoning models)
+ reasoning_effort = "medium"; # low|medium|high, only used for reasoning models
+ };
+ };
+ ollama = {
+ endpoint = "http://127.0.0.1:11434";
+ timeout = 30000; # Timeout in milliseconds
+ extra_request_body = {
+ options = {
+ temperature = 0.75;
+ num_ctx = 20480;
+ keep_alive = "5m";
+ };
+ };
+ };
+ groq = {
+ __inherited_from = "openai";
+ api_key_name = "GROQ_API_KEY";
+ endpoint = "https://api.groq.com/openai/v1/";
+ model = "llama-3.3-70b-versatile";
+ disable_tools = true;
+ extra_request_body = {
+ temperature = 1;
+ max_tokens = 32768; # remember to increase this value, otherwise it will stop generating halfway
+ };
+ };
+
+
Declared by:
|
@@ -947,48 +1005,6 @@ signed integer
Default:
600
-Declared by:
-
-
-
-
- vim.assistant.avante-nvim.setupOpts.vendors
-
-
-
-
-Define Your Custom providers.
-
-Type:
-null or (attribute set)
-
-Default:
-null
-
-Example: ollama = {
- __inherited_from = "openai";
- api_key_name = "";
- endpoint = "http://127.0.0.1:11434/v1";
- model = "qwen2.5u-coder:7b";
- max_tokens = 4096;
- disable_tools = true;
-};
-ollama_ds = {
- __inherited_from = "openai";
- api_key_name = "";
- endpoint = "http://127.0.0.1:11434/v1";
- model = "deepseek-r1u:7b";
- max_tokens = 4096;
- disable_tools = true;
-};
-
-
Declared by:
| | |