diff options
| author | Martin Bielik <mx.bielik@gmail.com> | 2023-04-20 19:34:26 +0200 |
|---|---|---|
| committer | Martin Bielik <mx.bielik@gmail.com> | 2023-04-20 19:34:26 +0200 |
| commit | e4c3dad037a1950de5eee153c45c2eddfe0f8f7a (patch) | |
| tree | cafc591f65bc3ba7f9092b56e9ad1758188f5222 /README.md | |
| parent | e328631901695e5f31b5cdd4eb4b1b955372deb6 (diff) | |
| download | vim-ai-e4c3dad037a1950de5eee153c45c2eddfe0f8f7a.tar.gz | |
documented request timeout
Diffstat (limited to '')
| -rw-r--r-- | README.md | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -186,6 +186,7 @@ Below are listed all available configuration options, along with their default v ```vim " :AI " - options: openai config (see https://platform.openai.com/docs/api-reference/completions) +" - options.request_timout: request timeout in seconds " - options.selection_boundary: seleciton prompt wrapper (eliminates empty responses, see #20) " - engine: complete | chat - see how to configure chat engine in the section below let g:vim_ai_complete = { @@ -201,6 +202,7 @@ let g:vim_ai_complete = { " :AIEdit " - options: openai config (see https://platform.openai.com/docs/api-reference/completions) +" - options.request_timout: request timeout in seconds " - options.selection_boundary: seleciton prompt wrapper " - engine: complete | chat - see how to configure chat engine in the section below let g:vim_ai_edit = { @@ -225,6 +227,7 @@ END " :AIChat " - options: openai config (see https://platform.openai.com/docs/api-reference/chat) " - options.initial_prompt: prompt prepended to every chat request +" - options.request_timout: request timeout in seconds " - options.selection_boundary: seleciton prompt wrapper " - ui.populate_options: put [chat-options] to the chat header " - ui.open_chat_command: customize how to open chat window |