gpt-pipe

GPT pipe

Execute GPT actions on stdin.

I am currently using this in vim to feed my entire vim buffer into ChatGPT.

vim nmap <leader>p :%! gpt-pipe you are a pragmatic planner. give insight/critique tasks and how I should do them. reorder tasks and explain ordering<CR>

which reorders my task list according to what GPT-4 thinks I should complete first.

To see the prompt being typed out in vim asynchronously, you can do

```vim function! HandleOutput(jobid, data, event) let l:output = join(a:data, "\n") let l:outputlines = split(l:output, '\n', 1) let l:currentline = getline(line('$')) let l:firstline = l:currentline . l:outputlines[0]

call setline(line('$'), l:first_line)

if len(l:outputlines) > 1 call append(line('$'), l:outputlines[1:]) endif endfunction

function! StartAsyncCommand(input) let l:cmd = ['gpt-pipe', 'you are a pragmatic planner. give insight/critique tasks and how I should do them. reorder tasks and explain ordering.'] let l:jobopts = { \ 'onstdout': function('HandleOutput'), \ 'onstderr': function('HandleOutput'), \ 'inio': 'pipe', \ } let l:jobid = jobstart(l:cmd, l:jobopts) call jobsend(l:jobid, a:input) call jobclose(l:jobid, 'stdin') endfunction ```

and then map it to <leader>p with

vim nmap <leader>p :call StartAsyncCommand(getline(1, '$'))<CR>

Installation

bash cargo install gpt-pipe