diff options
| author | Martin Bielik <mx.bielik@gmail.com> | 2023-03-21 22:17:51 +0100 |
|---|---|---|
| committer | Martin Bielik <mx.bielik@gmail.com> | 2023-03-21 22:17:51 +0100 |
| commit | f6893360225a180c2c62c08861589b655d7b159c (patch) | |
| tree | f2d2d7d4748333fdabf740e2722dd55aedb014cf /doc | |
| parent | 897f7137db66fcd6bb7ec73abdabd3f358016f2e (diff) | |
| download | vim-ai-f6893360225a180c2c62c08861589b655d7b159c.tar.gz | |
reverting config options
Diffstat (limited to '')
| -rw-r--r-- | doc/vim-ai.txt | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/doc/vim-ai.txt b/doc/vim-ai.txt index a2ca093..9b7f7f7 100644 --- a/doc/vim-ai.txt +++ b/doc/vim-ai.txt @@ -20,12 +20,6 @@ https://github.com/madox2/vim-ai (selection) :AI complete the selection (selection) :AI {instruction} complete the selection using the instruction -Options: > - let g:vim_ai_complete.options.model = "text-davinci-003" - let g:vim_ai_complete.options.max_tokens = 1000 - let g:vim_ai_complete.options.temperature = 0.1 - let g:vim_ai_complete.options.request_timeout = 10 - Check OpenAI docs for more infomration: https://platform.openai.com/docs/api-reference/completions @@ -35,12 +29,6 @@ https://platform.openai.com/docs/api-reference/completions (selection)? :AIEdit {instruction} edit the current line or the selection using the instruction -Options: > - let g:vim_ai_edit.options.model = "text-davinci-003" - let g:vim_ai_edit.options.max_tokens = 1000 - let g:vim_ai_edit.options.temperature = 0.1 - let g:vim_ai_edit.options.request_timeout = 10 - Check OpenAI docs for more infomration: https://platform.openai.com/docs/api-reference/completions @@ -51,12 +39,6 @@ https://platform.openai.com/docs/api-reference/completions (selection)? :AIChat {instruction}? start a new conversation given the selection, the instruction or both -Options: > - let g:vim_ai_chat.options.model = "gpt-3.5-turbo" - let g:vim_ai_chat.options.max_tokens = 1000 - let g:vim_ai_chat.options.temperature = 1 - let g:vim_ai_chat.options.request_timeout = 10 - Check OpenAI docs for more infomration: https://platform.openai.com/docs/api-reference/chat |