dotfiles/.config/emacs/lisp/init-chatgpt.el

17 lines
361 B
EmacsLisp

;; init-chatgpt.el -*- lexical-binding: t -*-
(use-package chatgpt-shell
:straight t
:ensure t
:defer t
:config
(setq chatgpt-shell-openai-key custom-chatgpt-my-key))
(use-package dall-e-shell
:straight t
:ensure t
:defer t
:config
(setq dall-e-shell-openai-key custom-chatgpt-my-key))
(provide 'init-chatgpt)
;;; init-chatgpt.el ends here