aboutsummaryrefslogtreecommitdiff
path: root/examples/llm.vim
diff options
context:
space:
mode:
authoraditya <bluenerd@protonmail.com>2023-08-10 12:32:35 +0530
committeraditya <bluenerd@protonmail.com>2023-08-10 12:32:35 +0530
commita9ff78b3f48dc9f81943c41531c4959ce7e2ae9d (patch)
tree49ee8c3c9148038f04112802265d928ef1aba428 /examples/llm.vim
parent2516af4cd61f509c995b4f78fdf123cba33f3509 (diff)
parent916a9acdd0a411426690400ebe2bb7ce840a6bba (diff)
resolve merge conflict
Diffstat (limited to 'examples/llm.vim')
-rw-r--r--examples/llm.vim27
1 files changed, 27 insertions, 0 deletions
diff --git a/examples/llm.vim b/examples/llm.vim
new file mode 100644
index 0000000..594a285
--- /dev/null
+++ b/examples/llm.vim
@@ -0,0 +1,27 @@
+" Basic plugin example
+
+function! Llm()
+
+ let url = "http://127.0.0.1:8080/completion"
+
+ " Get the content of the current buffer
+ let buffer_content = join(getline(1, '$'), "\n")
+
+ " Create the JSON payload
+ let json_payload = {"temp":0.72,"top_k":100,"top_p":0.73,"repeat_penalty":1.100000023841858,"n_predict":10,"stream": v:false}
+ let json_payload.prompt = buffer_content
+
+ " Define the curl command
+ let curl_command = 'curl -k -s -X POST -H "Content-Type: application/json" -d @- ' . url
+ let response = system(curl_command, json_encode(json_payload))
+
+ " Extract the content field from the response
+ let content = json_decode(response).content
+
+ let split_newlines = split(content, '\n', 1)
+
+ " Insert the content at the cursor position
+ call setline(line('.'), [ getline('.') . split_newlines[0] ] + split_newlines[1:])
+endfunction
+
+command! Llm call Llm()