From 641ac91387da52197d31a0e6bc5a06e28281f0e1 Mon Sep 17 00:00:00 2001 From: Martin Bielik Date: Tue, 14 Mar 2023 19:10:09 +0100 Subject: ctrl c to cancel completion --- py/complete.py | 42 ++++++++++++++++++++++++------------------ 1 file changed, 24 insertions(+), 18 deletions(-) (limited to 'py/complete.py') diff --git a/py/complete.py b/py/complete.py index 705dd90..9e46d63 100644 --- a/py/complete.py +++ b/py/complete.py @@ -8,22 +8,28 @@ prompt = vim.eval("prompt") openai.api_key = load_api_key() -if prompt.strip(): - - response = openai.Completion.create( - model="text-davinci-003", - prompt=prompt, - max_tokens=1000, - temperature=0.1, - stream=True, - ) - - 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) +try: + if prompt.strip(): + + print('Completing...') vim.command("redraw") + + response = openai.Completion.create( + model="text-davinci-003", + prompt=prompt, + max_tokens=1000, + temperature=0.1, + stream=True, + ) + + 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...") -- cgit v1.2.3