Skip to content

Commit

Permalink
llama.vim : neovim plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
ggerganov committed Oct 9, 2024
1 parent 5a2bf08 commit 84a5061
Showing 1 changed file with 199 additions and 0 deletions.
199 changes: 199 additions & 0 deletions examples/llama.vim
Original file line number Diff line number Diff line change
@@ -0,0 +1,199 @@
" sample config:
"
" - Ctrl+F - trigger FIM completion
"
" copy paste this in your .vimrc:
"
"augroup llama_cpp
" autocmd!
" autocmd InsertEnter * inoremap <buffer> <silent> <C-F> <Esc>:call llama#fim()<CR>a
"augroup END
"

" color of the suggested text
highlight llama_hint guifg=#ff772f

let s:default_config = {
\ 'endpoint': 'http://127.0.0.1:8012/infill',
\ 'n_prefix': 32,
\ 'n_suffix': 32,
\ 'n_predict': 64,
\ 'n_probs': 3,
\ 'temperature': 0.1,
\ 'stop': ["\n"]
\ }

let g:llama_config = get(g:, 'llama_config', s:default_config)

function! llama#fim() abort
let l:pos_x = col('.')
let l:pos_y = line('.')
let l:max_y = line('$')

let l:lines_prefix = getline(max([1, l:pos_y - g:llama_config.n_prefix]), l:pos_y - 1)
let l:lines_suffix = getline(l:pos_y + 1, min([l:max_y, l:pos_y + g:llama_config.n_suffix]))

let l:line_cur = getline('.')
let l:line_cur_prefix = strpart(l:line_cur, 0, l:pos_x)
let l:line_cur_suffix = strpart(l:line_cur, l:pos_x)

let l:prefix = ""
\ . join(l:lines_prefix, "\n")
\ . "\n"
\ . l:line_cur_prefix

let l:suffix = ""
\ . l:line_cur_suffix
\ . join(l:lines_suffix, "\n")
\ . "\n"

let l:request = json_encode({
\ 'prompt': "",
\ 'input_prefix': l:prefix,
\ 'input_suffix': l:suffix,
"\ 'stop': g:llama_config.stop,
\ 'n_predict': g:llama_config.n_predict,
"\ 'n_probs': g:llama_config.n_probs,
\ 'penalty_last_n': 0,
\ 'temperature': g:llama_config.temperature,
\ 'top_k': 5,
\ 'infill_p': 0.20,
\ 'infill_p_eog': 0.001,
\ 'stream': v:false,
\ 'samplers': ["top_k", "infill"]
\ })

" request completion from the server
let l:curl_command = printf(
\ "curl --silent --no-buffer --request POST --url %s --header \"Content-Type: application/json\" --data %s",
\ g:llama_config.endpoint, shellescape(l:request)
\ )

let l:can_accept = v:true
let s:content = []

let l:raw = system(l:curl_command)
if l:can_accept && v:shell_error
call add(s:content, "<| curl error: is the server on? |>")
let l:can_accept = v:false
endif

if l:can_accept && l:raw == ""
call add(s:content, "<| empty response: is the server on? |>")
let l:can_accept = v:false
endif

" get the generated suggestion
if l:can_accept
let l:response = json_decode(l:raw)

for l:part in split(get(l:response, 'content', ''), "\n", 1)
call add(s:content, l:part)
endfor

" remove trailing new lines
while len(s:content) > 0 && s:content[-1] == ""
call remove(s:content, -1)
endwhile
endif

if len(s:content) == 0
call add(s:content, "<| nothing to suggest |>")
let l:can_accept = v:false
endif

let s:pos_dx = len(s:content[-1])
let s:content[-1] .= l:line_cur_suffix

" display virtual text with the suggestion
let l:bufnr = bufnr('%')
let s:ns_id = nvim_create_namespace('llama_virtual_text')

call nvim_buf_set_extmark(l:bufnr, s:ns_id, l:pos_y - 1, l:pos_x - 1, {
\ 'virt_text': [[s:content[0], 'llama_hint']],
\ 'virt_text_win_col': virtcol('.')
\ })

call nvim_buf_set_extmark(l:bufnr, s:ns_id, l:pos_y - 1, 0, {
\ 'virt_lines': map(s:content[1:], {idx, val -> [[val, 'llama_hint']]}),
\ 'virt_text_win_col': virtcol('.')
\ })

" accept suggestion with Tab and reject it with any other key
if l:can_accept
inoremap <buffer> <Tab> <C-O>:call llama#accept_virtual_text()<CR>
else
inoremap <buffer> <Tab> <C-O>:call llama#cancel_virtual_text()<CR>
endif

for l:key in range(33, 127) + [8, 27]
if l:key != 0x7C
if l:key == 8
execute 'inoremap <buffer> <Bs> <C-O>:call llama#cancel_virtual_text()<CR><Bs>'
elseif l:key == 27
execute 'inoremap <buffer> <Esc> <C-O>:call llama#cancel_virtual_text()<CR><Esc>'
elseif l:key == 127
execute 'inoremap <buffer> <Del> <C-O>:call llama#cancel_virtual_text()<CR><Del>'
else
execute 'inoremap <buffer> ' . nr2char(l:key) . ' <C-O>:call llama#cancel_virtual_text()<CR>' . nr2char(l:key)
endif
endif
endfor

inoremap <buffer> <Up> <C-O>:call llama#cancel_virtual_text()<CR><Up>
inoremap <buffer> <Down> <C-O>:call llama#cancel_virtual_text()<CR><Down>
inoremap <buffer> <Left> <C-O>:call llama#cancel_virtual_text()<CR><Left>
inoremap <buffer> <Right> <C-O>:call llama#cancel_virtual_text()<CR><Right>
endfunction

function! llama#accept_virtual_text()
let l:pos_x = col('.')
let l:pos_y = line('.')

let l:line_cur = getline('.')

let l:pos0 = l:pos_x - 2

if l:pos_x == len(l:line_cur)
let l:pos0 = l:pos_x - 1
endif

" insert the suggestion at the cursor location
call setline(l:pos_y, l:line_cur[:l:pos0] . s:content[0])
if len(s:content) > 1
call append(l:pos_y, s:content[1:-1])
endif

" move the cursor to the end of the accepted text
call cursor(l:pos_y + len(s:content) - 1, l:pos_x + s:pos_dx)

call llama#cancel_virtual_text()
endfunction

function! llama#cancel_virtual_text()
" clear the virtual text
let l:bufnr = bufnr('%')
call nvim_buf_clear_namespace(l:bufnr, s:ns_id, 0, -1)

" remove the mappings
iunmap <buffer> <Tab>

for l:key in range(33, 127) + [8, 27]
if l:key != 0x7C
if l:key == 8
execute 'iunmap <buffer> <Bs>'
elseif l:key == 27
execute 'iunmap <buffer> <Esc>'
elseif l:key == 127
execute 'iunmap <buffer> <Del>'
else
execute 'iunmap <buffer> ' . nr2char(l:key)
endif
endif
endfor

iunmap <buffer> <Up>
iunmap <buffer> <Down>
iunmap <buffer> <Left>
iunmap <buffer> <Right>
endfunction

0 comments on commit 84a5061

Please sign in to comment.