diff options
| author | Martin Bielik <mx.bielik@gmail.com> | 2023-10-21 19:04:57 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-21 19:04:57 +0200 |
| commit | ccf981974232636d08a48094bf9dad3812a43cc8 (patch) | |
| tree | 611803cd36432c6e2cb68edf4cf3f81d502c4615 /doc/vim-ai.txt | |
| parent | 8f8083ba0eed23150020b698e74d9302f7212c5d (diff) | |
| parent | 55c4e2ec836e48552b52fb4b7878f7b50f67b53b (diff) | |
| download | vim-ai-ccf981974232636d08a48094bf9dad3812a43cc8.tar.gz | |
Merge pull request #59 from madox2/base-url-config
Custom APIs, closes #55, closes #51
Diffstat (limited to '')
| -rw-r--r-- | doc/vim-ai.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/vim-ai.txt b/doc/vim-ai.txt index 86965ee..f5f2cde 100644 --- a/doc/vim-ai.txt +++ b/doc/vim-ai.txt @@ -25,9 +25,11 @@ Options: > \ "engine": "complete", \ "options": { \ "model": "gpt-3.5-turbo-instruct", + \ "endpoint_url": "https://api.openai.com/v1/completions", \ "max_tokens": 1000, \ "temperature": 0.1, \ "request_timeout": 20, + \ "enable_auth": 1, \ "selection_boundary": "#####", \ }, \ "ui": { @@ -49,9 +51,11 @@ Options: > \ "engine": "complete", \ "options": { \ "model": "gpt-3.5-turbo-instruct", + \ "endpoint_url": "https://api.openai.com/v1/completions", \ "max_tokens": 1000, \ "temperature": 0.1, \ "request_timeout": 20, + \ "enable_auth": 1, \ "selection_boundary": "#####", \ }, \ "ui": { @@ -81,8 +85,10 @@ Options: > \ "options": { \ "model": "gpt-3.5-turbo", \ "max_tokens": 1000, + \ "endpoint_url": "https://api.openai.com/v1/chat/completions", \ "temperature": 1, \ "request_timeout": 20, + \ "enable_auth": 1, \ "selection_boundary": "#####", \ "initial_prompt": s:initial_chat_prompt, \ }, |