blob: f469592c197a0c6a20fa767bfb7f1be3c9e966d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
import openai
# import utils
plugin_root = vim.eval("s:plugin_root")
vim.command(f"py3file {plugin_root}/py/utils.py")
prompt = vim.eval("prompt")
options = vim.eval("options")
openai.api_key = load_api_key()
try:
if prompt.strip():
print('Completing...')
vim.command("redraw")
response = openai.Completion.create(
stream=True,
prompt=prompt,
model=options['model'],
max_tokens=int(options['max_tokens']),
temperature=float(options['temperature']),
request_timeout=float(options['request_timeout']),
)
generating_text = False
for resp in response:
text = resp['choices'][0].get('text', '')
if not text.strip() and not generating_text:
continue # trim newlines from the beginning
generating_text = True
vim.command("normal! a" + text)
vim.command("redraw")
except KeyboardInterrupt:
vim.command("normal! a Ctrl-C...")
|