dotfiles/.config/emacs/lisp/init-chatgpt.el
2024-09-05 14:21:01 +09:00

13 lines
249 B
EmacsLisp

;; init-chatgpt.el -*- lexical-binding: t -*-
(use-package gptel
:straight t
:ensure t
:defer t
:config
(setq gptel-model "gpt-4o-mini")
(setq gptel-api-key custom-chatgpt-my-key))
(provide 'init-chatgpt)
;;; init-chatgpt.el ends here