summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--README.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/README.md b/README.md
index 39df1d6..142a195 100644
--- a/README.md
+++ b/README.md
@@ -275,6 +275,7 @@ let g:vim_ai_complete = {
\ "max_tokens": 1000,
\ "temperature": 0.1,
\ "request_timeout": 20,
+\ "stream": 1,
\ "enable_auth": 1,
\ "selection_boundary": "#####",
\ },
@@ -298,6 +299,7 @@ let g:vim_ai_edit = {
\ "max_tokens": 1000,
\ "temperature": 0.1,
\ "request_timeout": 20,
+\ "stream": 1,
\ "enable_auth": 1,
\ "selection_boundary": "#####",
\ },
@@ -329,8 +331,10 @@ let g:vim_ai_chat = {
\ "model": "gpt-4o",
\ "endpoint_url": "https://api.openai.com/v1/chat/completions",
\ "max_tokens": 0,
+\ "max_completion_tokens": 0,
\ "temperature": 1,
\ "request_timeout": 20,
+\ "stream": 1,
\ "enable_auth": 1,
\ "selection_boundary": "",
\ "initial_prompt": s:initial_chat_prompt,