Who should be called AI engineer, the creater, or the user?
https://github.com/features/copilot
https://github.com/neovim/neovim/wiki/Installing-Neovim#install-from-package
https://github.com/zsh-users/zsh-autosuggestions/blob/master/INSTALL.md#oh-my-zsh
https://github.com/BuilderIO/ai-shell
To configure the settings, follow these steps:
- Run
ai configto open the configuration UI. - Enable "silent mode".
- If available, select
gpt-4. Since silent mode is already enabled, it should be much cheaper to use.
Packed below extensions in AI Pack
https://marketplace.visualstudio.com/items?itemName=GitHub.copilot
https://marketplace.visualstudio.com/items?itemName=GitHub.copilot-chat
https://marketplace.visualstudio.com/items?itemName=mefengl.vscode-i-dont-care-about-commit-message
repo: https://github.com/mefengl/vscode-i-dont-care-about-commit-message
https://marketplace.visualstudio.com/items?itemName=mefengl.copy-folder-content
repo: https://github.com/mefengl/vscode-copy-folder-content
https://github.com/junegunn/vim-plug#neovim
or auto install vim-plug if not exists
-- [[ ~/.config/nvim/init.lua ]]
vim.cmd([[
let data_dir = has('nvim') ? stdpath('data') . '/site' : '~/.vim'
if empty(glob(data_dir . '/autoload/plug.vim'))
silent execute '!curl -fLo '.data_dir.'/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
endif
]])https://github.com/github/copilot.vim
-- [[ ~/.config/nvim/init.lua ]]
vim.cmd([[
call plug#begin()
Plug 'github/copilot.vim'
call plug#end()
]])a tab or tabs of https://chat.openai.com/chat
- chatgpt-page-translate-button
- chatgpt-page-summary-button
- chatgpt-hide-history
- ChatGPT Auto-Continue 🔄
- Midjourney Click All
https://github.com/f/awesome-chatgpt-prompts
https://github.com/wuchangming/chatgpt-query-engineer-handbook
https://github.com/yetone/bob-plugin-openai-translator
https://github.com/yetone/bob-plugin-openai-polisher
https://marketplace.visualstudio.com/items?itemName=gencay.vscode-chatgpt
config:
https://github.com/gencay/vscode-chatgpt#gpt3
Cmd + Shift + P and type Open User Settings (JSON),
"chatgpt.method": "GPT3 OpenAI API Key",
// can be created in https://beta.openai.com/account/api-keys
"chatgpt.gpt3.apiKey": "xx-xxxxxxxxxx",https://marketplace.visualstudio.com/items?itemName=GitHub.copilot-labs
"github.copilot-labs.showBrushesLenses": true,
"github.copilot-labs.showTestGenerationLenses": true,https://www.notion.so/product/ai
AaaH! AI as a Hotkey
https://www.npmjs.com/package/@githubnext/github-copilot-cli
It need copilot subscription and sign up the waitlist, can use Codex-CLI blow instead
https://github.com/microsoft/Codex-CLI/blob/main/Installation.md#zsh-instructions
-o can be find in https://beta.openai.com/account/org-settings
-k can be find in https://beta.openai.com/account/api-keys
-e can be find in https://beta.openai.com/docs/models/codex
git clone https://github.com/microsoft/Codex-CLI.git
cd Codex-CLI
# install the requirements
python -m pip install -r requirements.txt
# setup in zsh
./scripts/zsh_setup.sh -o <org-xxxxxxxxxx> -k <sk-xxxxxxxxxx> -e <code-xxxx-0xx>