Skip to content

Commit

Permalink
updated request timeout docu
Browse files Browse the repository at this point in the history
  • Loading branch information
madox2 committed Apr 10, 2023
1 parent 40c344b commit 4a68d90
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ let g:vim_ai_complete = {
\ "model": "text-davinci-003",
\ "max_tokens": 1000,
\ "temperature": 0.1,
\ "request_timeout": 10,
\ "request_timeout": 20,
\ },
\}
Expand All @@ -185,7 +185,7 @@ let g:vim_ai_edit = {
\ "model": "text-davinci-003",
\ "max_tokens": 1000,
\ "temperature": 0.1,
\ "request_timeout": 10,
\ "request_timeout": 20,
\ },
\}
Expand All @@ -207,7 +207,7 @@ let g:vim_ai_chat = {
\ "model": "gpt-3.5-turbo",
\ "max_tokens": 1000,
\ "temperature": 1,
\ "request_timeout": 10,
\ "request_timeout": 20,
\ "initial_prompt": s:initial_chat_prompt,
\ },
\ "ui": {
Expand Down
6 changes: 3 additions & 3 deletions doc/vim-ai.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Options: >
\ "model": "text-davinci-003",
\ "max_tokens": 1000,
\ "temperature": 0.1,
\ "request_timeout": 10,
\ "request_timeout": 20,
\ },
\}

Expand All @@ -47,7 +47,7 @@ Options: >
\ "model": "text-davinci-003",
\ "max_tokens": 1000,
\ "temperature": 0.1,
\ "request_timeout": 10,
\ "request_timeout": 20,
\ },
\}

Expand All @@ -74,7 +74,7 @@ Options: >
\ "model": "gpt-3.5-turbo",
\ "max_tokens": 1000,
\ "temperature": 1,
\ "request_timeout": 10,
\ "request_timeout": 20,
\ "initial_prompt": s:initial_chat_prompt,
\ },
\ "ui": {
Expand Down

0 comments on commit 4a68d90

Please sign in to comment.