diff options
| author | Martin Bielik <mx.bielik@gmail.com> | 2023-04-13 21:47:10 +0200 |
|---|---|---|
| committer | Martin Bielik <mx.bielik@gmail.com> | 2023-04-13 21:47:10 +0200 |
| commit | 711676a1a951c3bbb7ecab79c8754b5a02e840e8 (patch) | |
| tree | 2c130ebf43b802c3227e593d562df5363ebe5495 /README.md | |
| parent | 97801a0fba2f4bb9409bb7a2b2bfec0344c53838 (diff) | |
| download | vim-ai-711676a1a951c3bbb7ecab79c8754b5a02e840e8.tar.gz | |
removing openai-python from docu
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -17,7 +17,6 @@ You can generate code, edit text, or have an interactive conversation with GPT m - Vim or Neovim compiled with python3 support - Setup [OpenAI API key](https://platform.openai.com/account/api-keys) -- [openai-python](https://github.com/openai/openai-python) library (version 0.27+) ```sh # save api key to `~/.config/openai.token` file @@ -30,13 +29,12 @@ export OPENAI_API_KEY="YOUR_OPENAI_API_KEY" ### Using `vim-plug` ```vim -Plug 'madox2/vim-ai', { 'do': './install.sh' } +Plug 'madox2/vim-ai' ``` ### Manual installation ```sh -pip install "openai>=0.27" git clone https://github.com/madox2/vim-ai/ mv vim-ai ~/.config/nvim/plugin/ # copy to the plugin directory ``` |