From 2d3aba9ee8da9c026d54e8a912a1d64f56809be3 Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Wed, 23 Oct 2024 17:16:56 +0300 Subject: [PATCH] llama.vim : bump generation time limit to 3s [no ci] --- examples/llama.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/llama.vim b/examples/llama.vim index 4bc26d4e9..57eb2a977 100644 --- a/examples/llama.vim +++ b/examples/llama.vim @@ -81,7 +81,7 @@ let s:default_config = { \ 'n_suffix': 64, \ 'n_predict': 128, \ 't_max_prompt_ms': 500, - \ 't_max_predict_ms': 1000, + \ 't_max_predict_ms': 3000, \ 'show_info': 2, \ 'auto_fim': v:true, \ 'max_line_suffix': 8,