diff options
| author | Martin Bielik <mx.bielik@gmail.com> | 2024-05-31 09:15:37 +0200 |
|---|---|---|
| committer | Martin Bielik <mx.bielik@gmail.com> | 2024-05-31 09:15:37 +0200 |
| commit | 437d4e68fd58ca2abb2e8323522f6e4c5fec3198 (patch) | |
| tree | 48d9d8ec2fe2f8ac824f00f1f4f02f240b9d3210 /doc/vim-ai.txt | |
| parent | 63e0fe926634a152f56586b63434c4739819a601 (diff) | |
| download | vim-ai-437d4e68fd58ca2abb2e8323522f6e4c5fec3198.tar.gz | |
gpt-4o as default chat model
Diffstat (limited to 'doc/vim-ai.txt')
| -rw-r--r-- | doc/vim-ai.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/vim-ai.txt b/doc/vim-ai.txt index 21427e3..fd30cf7 100644 --- a/doc/vim-ai.txt +++ b/doc/vim-ai.txt @@ -82,7 +82,7 @@ Options: > let g:vim_ai_chat = { \ "options": { - \ "model": "gpt-3.5-turbo", + \ "model": "gpt-4o", \ "max_tokens": 0, \ "endpoint_url": "https://api.openai.com/v1/chat/completions", \ "temperature": 1, @@ -211,7 +211,7 @@ To create custom commands, call `AIRun`, `AIEditRun` and `AIChatRun` functions: let l:config = { \ "engine": "chat", \ "options": { - \ "model": "gpt-3.5-turbo", + \ "model": "gpt-4o", \ "initial_prompt": ">>> system\nyou are a code assistant", \ "temperature": 1, \ }, |