diff options
| author | Enno <Konfekt@users.noreply.github.com> | 2024-04-14 17:55:24 +0200 |
|---|---|---|
| committer | Konfekt <Konfekt@users.noreply.github.com> | 2024-04-14 18:58:48 +0200 |
| commit | 11b9b9a0ba59ffc722ae74febebf6dc240a6154f (patch) | |
| tree | 0b6b999b7ec8a9c74c91917937bf5d68dc3beeab /doc/vim-ai.txt | |
| parent | 4e7fe9bcbfe6e4c97cd70a531438c8e961a20664 (diff) | |
| download | vim-ai-11b9b9a0ba59ffc722ae74febebf6dc240a6154f.tar.gz | |
increase token limit
Diffstat (limited to 'doc/vim-ai.txt')
| -rw-r--r-- | doc/vim-ai.txt | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/doc/vim-ai.txt b/doc/vim-ai.txt index c7aefde..6479a07 100644 --- a/doc/vim-ai.txt +++ b/doc/vim-ai.txt @@ -26,7 +26,7 @@ Options: > \ "options": { \ "model": "gpt-3.5-turbo-instruct", \ "endpoint_url": "https://api.openai.com/v1/completions", - \ "max_tokens": 1000, + \ "max_tokens": 0, \ "temperature": 0.1, \ "request_timeout": 20, \ "enable_auth": 1, @@ -52,7 +52,7 @@ Options: > \ "options": { \ "model": "gpt-3.5-turbo-instruct", \ "endpoint_url": "https://api.openai.com/v1/completions", - \ "max_tokens": 1000, + \ "max_tokens": 0, \ "temperature": 0.1, \ "request_timeout": 20, \ "enable_auth": 1, @@ -73,7 +73,6 @@ https://platform.openai.com/docs/api-reference/completions the instruction or both Options: > - let s:initial_chat_prompt =<< trim END >>> system @@ -84,7 +83,7 @@ Options: > let g:vim_ai_chat = { \ "options": { \ "model": "gpt-3.5-turbo", - \ "max_tokens": 1000, + \ "max_tokens": 0, \ "endpoint_url": "https://api.openai.com/v1/chat/completions", \ "temperature": 1, \ "request_timeout": 20, |