diff options
| author | Martin Bielik <martin.bielik@instea.sk> | 2024-12-03 22:18:08 +0100 |
|---|---|---|
| committer | Martin Bielik <martin.bielik@instea.sk> | 2024-12-03 22:18:08 +0100 |
| commit | 7da48a934c8dc2c6e9165faedef7abe6bb22ec22 (patch) | |
| tree | d5262d909189dad77b829f84a3cec58ee2686fde /README.md | |
| parent | 4b549017d2274d62f532c3ad00b7706f78fac824 (diff) | |
| download | vim-ai-7da48a934c8dc2c6e9165faedef7abe6bb22ec22.tar.gz | |
docu new options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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, |