-
Notifications
You must be signed in to change notification settings - Fork 2
/
robby.el
43 lines (35 loc) · 1.24 KB
/
robby.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
;;; robby.el --- Extensible OpenAI Integration -*- lexical-binding:t -*-
;; Author: Steve Molitor <stevemolitor@gmail.com>
;; Maintainer: Steve Molitor <stevemolitor@gmail.com>
;; URL: https://github.com/stevemolitor/robby
;; Version: 0.0.1
;; Package-Requires: ((emacs "29.1") (spinner "1.7.4") (transient "0.4.3") (markdown-mode "2.5"))
;; Homepage: https://github.com/stevemolitor/robby
;;; Commentary:
;; Robby provides an extensible interface to OpenAI. It provides basic
;; commands to use OpenAI with regions, the minibuffer, and help
;; windows. It also provides a mechanism for defining your own
;; interactive AI commands, and to save the last executed command as a
;; reusable custom AI command. See the README for more details.
;;; Code:
;; check for missing requires on compilation
(eval-when-compile
(require 'cl-generic)
(require 'cl-lib)
(require 'cus-edit)
(require 'diff)
(require 'files)
(require 'json)
(require 'markdown-mode)
(require 'map)
(require 'rx)
(require 'seq)
(require 'transient))
;; require files with autoloads, and customization file
(require 'robby-customization)
(require 'robby-commands)
(require 'robby-mode)
(require 'robby-process)
(require 'robby-transients)
(provide 'robby)
;;; robby.el ends here