hilbert-yaa / ChatGPT.el

ChatGPT in Emacs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ChatGPT.el

ChatGPT in Emacs.

Features

  • Send regions of text to ChatGPT
  • Syntax highlighting for returned code
  • Uses llm-workflow-engine, so can customize as needed

News

  • 9/10/2023: Status - I use this every day and is stable. Please submit an issue if not.
  • 7/8/2023: Shortcut customization has been reworked, see here.

Installation

Dependency

Set your OpenAI API key. In .zshrc/bashrc,

export OPENAI_API_KEY=<API_KEY>

For Windows users, see here.

Install llm-workflow-engine:

pip install --upgrade pip
pip install setuptools
pip install git+https://github.com/llm-workflow-engine/llm-workflow-engine

If you encounter any problems, please submit an issue or refer to llm-workflow-engine (formerly chatgpt-wrapper).

Straight

(use-package chatgpt
  :straight (:host github :repo "joshcho/ChatGPT.el" :files ("dist" "*.el"))
  :bind ("C-c q" . chatgpt-query))

Quelpa

(require 'quelpa-use-package)
(use-package chatgpt
  :quelpa ((chatgpt :fetcher git :url "https://github.com/joshcho/ChatGPT.el.git") :upgrade t)
  :bind ("C-c q" . chatgpt-query))

Spacemacs

Assuming Quelpa installation:

In dotspacemacs/user-config function,

(global-set-key (kbd "C-c q") #'chatgpt-query)

In dotspacemacs/layers function for setq-default,

dotspacemacs-additional-packages
'(
  (chatgpt :location (recipe
                      :fetcher github
                      :repo "joshcho/ChatGPT.el"))
  ;; other additional packages...
  )

Doom Emacs

In packages.el ,

(package! chatgpt
  :recipe (:host github :repo "joshcho/ChatGPT.el" :files ("dist" "*.el")))

In config.el ,

(use-package! chatgpt
  :defer t
  :bind ("C-c q" . chatgpt-query))

Usage

Press C-c q to query ChatGPT. Select a code block before C-c q to query the code.

Customization

Chat

Configure default model, system message, browser backend, etc. with llm-workflow-engine.

Code Query Shortcuts

Customize chatgpt-code-query-map for your own prompt shortcuts. Note that “custom” is a reserved prompt shortcut.

(setq chatgpt-code-query-map
      '(
        ;; ChatGPT.el defaults, string for each shortcut
        ("bug" . "There is a bug in the following, please help me fix it.")
        ("doc" . "Please write the documentation for the following.")
        ("improve" . "Please improve the following.")
        ("understand" . "What is the following?")
        ("refactor" . "Please refactor the following.")
        ("suggest" . "Please make suggestions for the following.")
        ;; your shortcut
        ("prompt-name" . "My custom prompt.")))

If you previously had customizations, note that we use strings now, not format strings.

Limitations

  • Multiline input is not supported yet

Related Projects

About

ChatGPT in Emacs

License:GNU General Public License v3.0


Languages

Language:Emacs Lisp 100.0%