diff options
| author | Martin Bielik <mx.bielik@gmail.com> | 2023-10-21 18:29:55 +0200 |
|---|---|---|
| committer | Martin Bielik <mx.bielik@gmail.com> | 2023-10-21 18:29:55 +0200 |
| commit | d9e1e193b6d8a8d2eb4eb2deb64d774ab5d5079b (patch) | |
| tree | db9ff9c759ea535e8d49d6bd1f469535ae8498c3 /doc/vim-ai.txt | |
| parent | dca2bcf256df92196febf9bae77206bb6e51dac1 (diff) | |
| download | vim-ai-d9e1e193b6d8a8d2eb4eb2deb64d774ab5d5079b.tar.gz | |
endpoint_url config
Diffstat (limited to '')
| -rw-r--r-- | doc/vim-ai.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/vim-ai.txt b/doc/vim-ai.txt index fa044f9..85ca5ff 100644 --- a/doc/vim-ai.txt +++ b/doc/vim-ai.txt @@ -25,10 +25,10 @@ Options: > \ "engine": "complete", \ "options": { \ "model": "text-davinci-003", + \ "endpoint_url": "https://api.openai.com/v1/completions", \ "max_tokens": 1000, \ "temperature": 0.1, \ "request_timeout": 20, - \ "base_url": "https://api.openai.com", \ "enable_auth": 1, \ "selection_boundary": "#####", \ }, @@ -51,10 +51,10 @@ Options: > \ "engine": "complete", \ "options": { \ "model": "text-davinci-003", + \ "endpoint_url": "https://api.openai.com/v1/completions", \ "max_tokens": 1000, \ "temperature": 0.1, \ "request_timeout": 20, - \ "base_url": "https://api.openai.com", \ "enable_auth": 1, \ "selection_boundary": "#####", \ }, @@ -85,9 +85,9 @@ Options: > \ "options": { \ "model": "gpt-3.5-turbo", \ "max_tokens": 1000, + \ "endpoint_url": "https://api.openai.com/v1/chat/completions", \ "temperature": 1, \ "request_timeout": 20, - \ "base_url": "https://api.openai.com", \ "enable_auth": 1, \ "selection_boundary": "#####", \ "initial_prompt": s:initial_chat_prompt, |