2022-08-13 17:29:06 +00:00
|
|
|
|
;;; khoj.el --- Natural, Incremental Search for your Second Brain -*- lexical-binding: t -*-
|
2021-08-16 08:27:46 +00:00
|
|
|
|
|
|
|
|
|
;; Copyright (C) 2021-2022 Debanjum Singh Solanky
|
|
|
|
|
|
|
|
|
|
;; Author: Debanjum Singh Solanky <debanjum@gmail.com>
|
2022-08-13 17:29:06 +00:00
|
|
|
|
;; Description: Natural, Incremental Search for your Second Brain
|
|
|
|
|
;; Keywords: search, org-mode, outlines, markdown, beancount, ledger, image
|
2023-03-10 18:13:18 +00:00
|
|
|
|
;; Version: 0.4.1
|
2023-03-22 08:13:00 +00:00
|
|
|
|
;; Package-Requires: ((emacs "27.1") (transient "0.3.0") (dash "2.19.1") (org "9.0.0"))
|
2022-12-15 01:47:07 +00:00
|
|
|
|
;; URL: https://github.com/debanjum/khoj/tree/master/src/interface/emacs
|
2021-08-16 08:27:46 +00:00
|
|
|
|
|
|
|
|
|
;; This file is NOT part of GNU Emacs.
|
|
|
|
|
|
|
|
|
|
;;; License:
|
|
|
|
|
|
|
|
|
|
;; This program is free software; you can redistribute it and/or
|
|
|
|
|
;; modify it under the terms of the GNU General Public License
|
|
|
|
|
;; as published by the Free Software Foundation; either version 3
|
|
|
|
|
;; of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
;; This program is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
|
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
2022-07-27 14:18:17 +00:00
|
|
|
|
;; This package provides a natural, incremental search interface to your
|
2022-08-13 17:29:06 +00:00
|
|
|
|
;; `org-mode' notes, `markdown' files, `beancount' transactions and images.
|
|
|
|
|
;; It is a wrapper that interfaces with the Khoj server.
|
|
|
|
|
;; The server exposes an API for advanced search using transformer ML models.
|
|
|
|
|
;; The Khoj server needs to be running to use this package.
|
|
|
|
|
;; See the repository docs for detailed setup of the Khoj server.
|
|
|
|
|
;;
|
|
|
|
|
;; Quickstart
|
|
|
|
|
;; -------------
|
|
|
|
|
;; 1. Install Khoj Server
|
|
|
|
|
;; pip install khoj-assistant
|
|
|
|
|
;; 2. Start, Configure Khoj Server
|
|
|
|
|
;; khoj
|
2022-12-23 22:08:38 +00:00
|
|
|
|
;; 3. Install khoj.el from MELPA Stable
|
|
|
|
|
;; (use-package khoj :pin melpa-stable :bind ("C-c s" . 'khoj))
|
2021-08-16 08:27:46 +00:00
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
|
|
(require 'url)
|
|
|
|
|
(require 'json)
|
2023-01-18 23:59:19 +00:00
|
|
|
|
(require 'transient)
|
2023-01-20 23:40:15 +00:00
|
|
|
|
(require 'outline)
|
2023-03-22 07:13:17 +00:00
|
|
|
|
(require 'dash)
|
2023-03-22 08:13:00 +00:00
|
|
|
|
(require 'org)
|
|
|
|
|
|
2023-01-23 21:41:58 +00:00
|
|
|
|
(eval-when-compile (require 'subr-x)) ;; for string-trim before Emacs 28.2
|
2021-08-16 08:27:46 +00:00
|
|
|
|
|
2023-01-20 02:36:54 +00:00
|
|
|
|
|
2023-01-19 04:04:05 +00:00
|
|
|
|
;; -------------------------
|
|
|
|
|
;; Khoj Static Configuration
|
|
|
|
|
;; -------------------------
|
|
|
|
|
|
2022-08-09 17:49:34 +00:00
|
|
|
|
(defcustom khoj-server-url "http://localhost:8000"
|
2022-07-19 14:26:16 +00:00
|
|
|
|
"Location of Khoj API server."
|
|
|
|
|
:group 'khoj
|
2021-08-16 08:27:46 +00:00
|
|
|
|
:type 'string)
|
|
|
|
|
|
2022-08-09 17:49:34 +00:00
|
|
|
|
(defcustom khoj-image-width 156
|
2022-07-27 14:55:18 +00:00
|
|
|
|
"Width of rendered images returned by Khoj."
|
2022-07-19 14:26:16 +00:00
|
|
|
|
:group 'khoj
|
2021-09-10 08:01:23 +00:00
|
|
|
|
:type 'integer)
|
|
|
|
|
|
2022-08-09 17:55:10 +00:00
|
|
|
|
(defcustom khoj-image-height 156
|
|
|
|
|
"Height of rendered images returned by Khoj."
|
|
|
|
|
:group 'khoj
|
|
|
|
|
:type 'integer)
|
|
|
|
|
|
2022-08-09 17:49:34 +00:00
|
|
|
|
(defcustom khoj-results-count 5
|
2022-07-27 14:55:18 +00:00
|
|
|
|
"Number of results to get from Khoj API for each query."
|
|
|
|
|
:group 'khoj
|
|
|
|
|
:type 'integer)
|
|
|
|
|
|
2023-01-19 01:13:49 +00:00
|
|
|
|
(defcustom khoj-default-content-type "org"
|
2022-08-07 15:04:26 +00:00
|
|
|
|
"The default content type to perform search on."
|
|
|
|
|
:group 'khoj
|
|
|
|
|
:type '(choice (const "org")
|
|
|
|
|
(const "markdown")
|
|
|
|
|
(const "ledger")
|
2023-01-19 01:01:17 +00:00
|
|
|
|
(const "image")
|
2022-08-07 15:04:26 +00:00
|
|
|
|
(const "music")))
|
|
|
|
|
|
2023-01-20 02:36:54 +00:00
|
|
|
|
|
2023-01-19 04:04:05 +00:00
|
|
|
|
;; --------------------------
|
|
|
|
|
;; Khoj Dynamic Configuration
|
|
|
|
|
;; --------------------------
|
|
|
|
|
|
2022-07-27 16:08:37 +00:00
|
|
|
|
(defvar khoj--minibuffer-window nil
|
2023-01-19 01:01:17 +00:00
|
|
|
|
"Minibuffer window used to enter query.")
|
2022-07-27 16:08:37 +00:00
|
|
|
|
|
2022-07-29 13:50:29 +00:00
|
|
|
|
(defconst khoj--query-prompt "🦅Khoj: "
|
2023-01-19 01:01:17 +00:00
|
|
|
|
"Query prompt shown in the minibuffer.")
|
2022-07-27 00:14:14 +00:00
|
|
|
|
|
2023-03-22 03:01:14 +00:00
|
|
|
|
(defconst khoj--search-buffer-name "*🦅Khoj Search*"
|
|
|
|
|
"Name of buffer to show search results from Khoj.")
|
2022-08-05 14:31:46 +00:00
|
|
|
|
|
2023-03-22 07:13:17 +00:00
|
|
|
|
(defconst khoj--chat-buffer-name "*🦅Khoj Chat*"
|
|
|
|
|
"Name of chat buffer for Khoj.")
|
|
|
|
|
|
2023-01-19 01:13:49 +00:00
|
|
|
|
(defvar khoj--content-type "org"
|
2022-07-27 02:13:04 +00:00
|
|
|
|
"The type of content to perform search on.")
|
|
|
|
|
|
2022-12-15 01:31:52 +00:00
|
|
|
|
(declare-function beancount-mode "beancount" ())
|
|
|
|
|
(declare-function markdown-mode "markdown-mode" ())
|
|
|
|
|
(declare-function org-music-mode "org-music" ())
|
|
|
|
|
(declare-function which-key--show-keymap "which-key" (KEYMAP-NAME KEYMAP &optional PRIOR-ARGS ALL
|
|
|
|
|
NO-PAGING FILTER))
|
|
|
|
|
|
2022-08-07 15:40:35 +00:00
|
|
|
|
(defun khoj--keybindings-info-message ()
|
2023-01-19 01:01:17 +00:00
|
|
|
|
"Show available khoj keybindings in-context, when khoj invoked."
|
2022-08-07 15:53:14 +00:00
|
|
|
|
(let ((enabled-content-types (khoj--get-enabled-content-types)))
|
2022-08-07 15:40:35 +00:00
|
|
|
|
(concat
|
|
|
|
|
"
|
2023-01-19 01:13:49 +00:00
|
|
|
|
Set Content Type
|
2022-08-07 15:40:35 +00:00
|
|
|
|
-------------------------\n"
|
2022-08-07 15:53:14 +00:00
|
|
|
|
(when (member 'markdown enabled-content-types)
|
2023-01-19 04:04:05 +00:00
|
|
|
|
"C-x m | markdown\n")
|
2022-08-07 15:53:14 +00:00
|
|
|
|
(when (member 'org enabled-content-types)
|
2022-08-07 15:40:35 +00:00
|
|
|
|
"C-x o | org-mode\n")
|
2022-08-07 15:53:14 +00:00
|
|
|
|
(when (member 'ledger enabled-content-types)
|
2022-08-07 15:40:35 +00:00
|
|
|
|
"C-x l | ledger\n")
|
2022-08-07 15:53:14 +00:00
|
|
|
|
(when (member 'image enabled-content-types)
|
2023-01-19 01:01:17 +00:00
|
|
|
|
"C-x i | image\n")
|
2022-08-07 15:53:14 +00:00
|
|
|
|
(when (member 'music enabled-content-types)
|
2022-08-07 15:40:35 +00:00
|
|
|
|
"C-x M | music\n"))))
|
|
|
|
|
|
2022-12-15 01:31:52 +00:00
|
|
|
|
(defvar khoj--rerank nil "Track when re-rank of results triggered.")
|
2023-01-19 01:13:49 +00:00
|
|
|
|
(defun khoj--search-markdown () "Set content-type to `markdown'." (interactive) (setq khoj--content-type "markdown"))
|
|
|
|
|
(defun khoj--search-org () "Set content-type to `org-mode'." (interactive) (setq khoj--content-type "org"))
|
|
|
|
|
(defun khoj--search-ledger () "Set content-type to `ledger'." (interactive) (setq khoj--content-type "ledger"))
|
|
|
|
|
(defun khoj--search-images () "Set content-type to image." (interactive) (setq khoj--content-type "image"))
|
|
|
|
|
(defun khoj--search-music () "Set content-type to music." (interactive) (setq khoj--content-type "music"))
|
2022-08-15 03:14:28 +00:00
|
|
|
|
(defun khoj--improve-rank () "Use cross-encoder to rerank search results." (interactive) (khoj--incremental-search t))
|
2022-08-05 17:15:51 +00:00
|
|
|
|
(defun khoj--make-search-keymap (&optional existing-keymap)
|
2022-08-13 17:29:06 +00:00
|
|
|
|
"Setup keymap to configure Khoj search. Build of EXISTING-KEYMAP when passed."
|
2022-08-07 15:53:14 +00:00
|
|
|
|
(let ((enabled-content-types (khoj--get-enabled-content-types))
|
2022-08-07 15:01:21 +00:00
|
|
|
|
(kmap (or existing-keymap (make-sparse-keymap))))
|
2022-08-15 03:14:28 +00:00
|
|
|
|
(define-key kmap (kbd "C-c RET") #'khoj--improve-rank)
|
2022-08-07 15:53:14 +00:00
|
|
|
|
(when (member 'markdown enabled-content-types)
|
2022-08-07 15:01:21 +00:00
|
|
|
|
(define-key kmap (kbd "C-x m") #'khoj--search-markdown))
|
2022-08-07 15:53:14 +00:00
|
|
|
|
(when (member 'org enabled-content-types)
|
2022-08-07 15:01:21 +00:00
|
|
|
|
(define-key kmap (kbd "C-x o") #'khoj--search-org))
|
2022-08-07 15:53:14 +00:00
|
|
|
|
(when (member 'ledger enabled-content-types)
|
2022-08-07 15:01:21 +00:00
|
|
|
|
(define-key kmap (kbd "C-x l") #'khoj--search-ledger))
|
2022-08-07 15:53:14 +00:00
|
|
|
|
(when (member 'image enabled-content-types)
|
2022-08-07 15:01:21 +00:00
|
|
|
|
(define-key kmap (kbd "C-x i") #'khoj--search-images))
|
2022-08-07 15:53:14 +00:00
|
|
|
|
(when (member 'music enabled-content-types)
|
2022-08-07 15:03:06 +00:00
|
|
|
|
(define-key kmap (kbd "C-x M") #'khoj--search-music))
|
2022-08-05 17:15:51 +00:00
|
|
|
|
kmap))
|
2022-08-13 17:29:06 +00:00
|
|
|
|
|
|
|
|
|
(defvar khoj--keymap nil "Track Khoj keymap in this variable.")
|
2022-08-05 17:15:51 +00:00
|
|
|
|
(defun khoj--display-keybinding-info ()
|
|
|
|
|
"Display information on keybindings to customize khoj search.
|
|
|
|
|
Use `which-key` if available, else display simple message in echo area"
|
2022-08-06 13:27:23 +00:00
|
|
|
|
(if (fboundp 'which-key-show-full-keymap)
|
|
|
|
|
(let ((khoj--keymap (khoj--make-search-keymap)))
|
2022-08-07 12:57:08 +00:00
|
|
|
|
(which-key--show-keymap (symbol-name 'khoj--keymap)
|
|
|
|
|
(symbol-value 'khoj--keymap)
|
|
|
|
|
nil t t))
|
2022-08-07 15:40:35 +00:00
|
|
|
|
(message "%s" (khoj--keybindings-info-message))))
|
2022-08-05 16:32:58 +00:00
|
|
|
|
|
2023-01-20 02:36:54 +00:00
|
|
|
|
|
2023-01-19 04:04:05 +00:00
|
|
|
|
;; -----------------------------------------------
|
|
|
|
|
;; Extract and Render Entries of each Content Type
|
|
|
|
|
;; -----------------------------------------------
|
|
|
|
|
|
2022-07-21 16:22:24 +00:00
|
|
|
|
(defun khoj--extract-entries-as-markdown (json-response query)
|
2022-08-13 17:29:06 +00:00
|
|
|
|
"Convert JSON-RESPONSE, QUERY from API to markdown entries."
|
2023-01-26 21:59:44 +00:00
|
|
|
|
(thread-last
|
|
|
|
|
json-response
|
|
|
|
|
;; Extract and render each markdown entry from response
|
|
|
|
|
(mapcar (lambda (json-response-item)
|
|
|
|
|
(thread-last
|
|
|
|
|
;; Extract markdown entry from each item in json response
|
|
|
|
|
(cdr (assoc 'entry json-response-item))
|
|
|
|
|
;; Format markdown entry as a string
|
2023-01-26 22:04:46 +00:00
|
|
|
|
(format "%s\n\n")
|
2023-01-26 21:59:44 +00:00
|
|
|
|
;; Standardize results to 2nd level heading for consistent rendering
|
|
|
|
|
(replace-regexp-in-string "^\#+" "##"))))
|
|
|
|
|
;; Render entries into markdown formatted string with query set as as top level heading
|
|
|
|
|
(format "# %s\n%s" query)
|
|
|
|
|
;; remove leading (, ) or SPC from extracted entries string
|
|
|
|
|
(replace-regexp-in-string "^[\(\) ]" "")))
|
2022-07-21 16:22:24 +00:00
|
|
|
|
|
2022-07-19 14:26:16 +00:00
|
|
|
|
(defun khoj--extract-entries-as-org (json-response query)
|
2023-01-05 08:47:38 +00:00
|
|
|
|
"Convert JSON-RESPONSE, QUERY from API to `org-mode' entries."
|
2023-01-26 21:59:44 +00:00
|
|
|
|
(let ((org-results-buffer-format-str "* %s\n%s\n#+STARTUP: showall hidestars inlineimages"))
|
|
|
|
|
(thread-last
|
|
|
|
|
json-response
|
|
|
|
|
;; Extract and render each org-mode entry from response
|
|
|
|
|
(mapcar (lambda (json-response-item)
|
|
|
|
|
(thread-last
|
|
|
|
|
;; Extract org entry from each item in json response
|
|
|
|
|
(cdr (assoc 'entry json-response-item))
|
|
|
|
|
;; Format org entry as a string
|
|
|
|
|
(format "%s")
|
|
|
|
|
;; Standardize results to 2nd level heading for consistent rendering
|
|
|
|
|
(replace-regexp-in-string "^\*+" "**"))))
|
|
|
|
|
;; Render entries into org formatted string with query set as as top level heading
|
|
|
|
|
(format org-results-buffer-format-str query)
|
|
|
|
|
;; remove leading (, ) or SPC from extracted entries string
|
|
|
|
|
(replace-regexp-in-string "^[\(\) ]" ""))))
|
2021-08-16 08:27:46 +00:00
|
|
|
|
|
2023-01-26 22:04:46 +00:00
|
|
|
|
(defun khoj--extract-entries-as-ledger (json-response query)
|
|
|
|
|
"Convert JSON-RESPONSE, QUERY from API to ledger entries."
|
|
|
|
|
(thread-last json-response
|
|
|
|
|
;; extract and render entries from API response
|
|
|
|
|
(mapcar (lambda (args) (format "%s\n\n" (cdr (assoc 'entry args)))))
|
|
|
|
|
;; Set query as heading in rendered results buffer
|
|
|
|
|
(format ";; %s\n\n%s\n" query)
|
|
|
|
|
;; remove leading (, ) or SPC from extracted entries string
|
|
|
|
|
(replace-regexp-in-string "^[\(\) ]" "")
|
|
|
|
|
;; remove trailing (, ) or SPC from extracted entries string
|
|
|
|
|
(replace-regexp-in-string "[\(\) ]$" "")))
|
|
|
|
|
|
2022-07-19 14:26:16 +00:00
|
|
|
|
(defun khoj--extract-entries-as-images (json-response query)
|
2022-08-13 17:29:06 +00:00
|
|
|
|
"Convert JSON-RESPONSE, QUERY from API to html with images."
|
2023-01-26 21:59:44 +00:00
|
|
|
|
(let ((image-results-buffer-html-format-str "<html>\n<body>\n<h1>%s</h1>%s\n\n</body>\n</html>")
|
|
|
|
|
;; Format string to wrap images into html img, href tags with metadata in headings
|
|
|
|
|
(image-result-html-format-str "\n\n<h2>Score: %s Meta: %s Image: %s</h2>\n\n<a href=\"%s\">\n<img src=\"%s?%s\" width=%s height=%s>\n</a>"))
|
|
|
|
|
(thread-last
|
|
|
|
|
json-response
|
|
|
|
|
;; Extract each image entry from response and render as html
|
|
|
|
|
(mapcar (lambda (json-response-item)
|
|
|
|
|
(let ((score (cdr (assoc 'score json-response-item)))
|
|
|
|
|
(metadata_score (cdr (assoc 'metadata_score (assoc 'additional json-response-item))))
|
|
|
|
|
(image_score (cdr (assoc 'image_score (assoc 'additional json-response-item))))
|
|
|
|
|
(image_url (concat khoj-server-url (cdr (assoc 'entry json-response-item)))))
|
|
|
|
|
;; Wrap images into html img, href tags with metadata in headings
|
|
|
|
|
(format image-result-html-format-str
|
|
|
|
|
;; image scores metadata
|
|
|
|
|
score metadata_score image_score
|
|
|
|
|
;; image url
|
|
|
|
|
image_url image_url (random 10000)
|
|
|
|
|
;; image dimensions
|
|
|
|
|
khoj-image-width khoj-image-height))))
|
|
|
|
|
;; Collate entries into single html page string
|
|
|
|
|
(format image-results-buffer-html-format-str query)
|
|
|
|
|
;; remove leading (, ) or SPC from extracted entries string
|
|
|
|
|
(replace-regexp-in-string "^[\(\) ]" "")
|
|
|
|
|
;; remove trailing (, ) or SPC from extracted entries string
|
|
|
|
|
(replace-regexp-in-string "[\(\) ]$" ""))))
|
2021-09-10 08:01:23 +00:00
|
|
|
|
|
2023-02-24 22:16:13 +00:00
|
|
|
|
(defun khoj--extract-entries (json-response query)
|
|
|
|
|
"Convert JSON-RESPONSE, QUERY from API to text entries."
|
|
|
|
|
(thread-last json-response
|
|
|
|
|
;; extract and render entries from API response
|
|
|
|
|
(mapcar (lambda (args) (format "%s\n\n" (cdr (assoc 'entry args)))))
|
|
|
|
|
;; Set query as heading in rendered results buffer
|
|
|
|
|
(format "# Query: %s\n\n%s\n" query)
|
|
|
|
|
;; remove leading (, ) or SPC from extracted entries string
|
|
|
|
|
(replace-regexp-in-string "^[\(\) ]" "")
|
|
|
|
|
;; remove trailing (, ) or SPC from extracted entries string
|
|
|
|
|
(replace-regexp-in-string "[\(\) ]$" "")))
|
|
|
|
|
|
2023-01-19 01:13:49 +00:00
|
|
|
|
(defun khoj--buffer-name-to-content-type (buffer-name)
|
|
|
|
|
"Infer content type based on BUFFER-NAME."
|
2022-08-07 15:53:14 +00:00
|
|
|
|
(let ((enabled-content-types (khoj--get-enabled-content-types))
|
2022-08-07 15:04:26 +00:00
|
|
|
|
(file-extension (file-name-extension buffer-name)))
|
2021-08-16 08:27:46 +00:00
|
|
|
|
(cond
|
2022-08-07 15:53:14 +00:00
|
|
|
|
((and (member 'music enabled-content-types) (equal buffer-name "Music.org")) "music")
|
|
|
|
|
((and (member 'ledger enabled-content-types) (or (equal file-extension "bean") (equal file-extension "beancount"))) "ledger")
|
|
|
|
|
((and (member 'org enabled-content-types) (equal file-extension "org")) "org")
|
|
|
|
|
((and (member 'markdown enabled-content-types) (or (equal file-extension "markdown") (equal file-extension "md"))) "markdown")
|
2023-01-19 01:13:49 +00:00
|
|
|
|
(t khoj-default-content-type))))
|
2021-08-16 08:27:46 +00:00
|
|
|
|
|
2023-01-20 02:36:54 +00:00
|
|
|
|
|
2023-01-19 04:04:05 +00:00
|
|
|
|
;; --------------
|
|
|
|
|
;; Query Khoj API
|
|
|
|
|
;; --------------
|
|
|
|
|
|
2022-08-07 15:53:14 +00:00
|
|
|
|
(defun khoj--get-enabled-content-types ()
|
2022-08-13 17:29:06 +00:00
|
|
|
|
"Get content types enabled for search from API."
|
2023-02-24 10:01:51 +00:00
|
|
|
|
(let ((config-url (format "%s/api/config/types" khoj-server-url))
|
2022-09-19 19:46:46 +00:00
|
|
|
|
(url-request-method "GET"))
|
2022-08-07 14:28:43 +00:00
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(erase-buffer)
|
|
|
|
|
(url-insert-file-contents config-url)
|
2023-02-24 10:01:51 +00:00
|
|
|
|
(thread-last
|
|
|
|
|
(json-parse-buffer :object-type 'alist)
|
|
|
|
|
(mapcar 'intern)))))
|
2022-08-07 14:28:43 +00:00
|
|
|
|
|
2023-03-22 03:01:14 +00:00
|
|
|
|
(defun khoj--construct-search-api-query (query content-type &optional rerank)
|
2023-03-22 07:13:17 +00:00
|
|
|
|
"Construct Search API Query.
|
|
|
|
|
Use QUERY, CONTENT-TYPE and (optional) RERANK as query params"
|
2022-07-27 02:58:36 +00:00
|
|
|
|
(let ((rerank (or rerank "false"))
|
|
|
|
|
(encoded-query (url-hexify-string query)))
|
2023-01-19 01:13:49 +00:00
|
|
|
|
(format "%s/api/search?q=%s&t=%s&r=%s&n=%s" khoj-server-url encoded-query content-type rerank khoj-results-count)))
|
2021-08-16 08:27:46 +00:00
|
|
|
|
|
2023-03-22 03:01:14 +00:00
|
|
|
|
(defun khoj--query-search-api-and-render-results (query-url content-type query buffer-name)
|
2023-03-22 07:13:17 +00:00
|
|
|
|
"Query Khoj Search with QUERY-URL.
|
|
|
|
|
Render results in BUFFER-NAME using QUERY, CONTENT-TYPE."
|
2022-07-27 00:14:14 +00:00
|
|
|
|
;; get json response from api
|
|
|
|
|
(with-current-buffer buffer-name
|
2022-09-19 19:46:46 +00:00
|
|
|
|
(let ((inhibit-read-only t)
|
|
|
|
|
(url-request-method "GET"))
|
2022-07-27 00:14:14 +00:00
|
|
|
|
(erase-buffer)
|
|
|
|
|
(url-insert-file-contents query-url)))
|
|
|
|
|
;; render json response into formatted entries
|
|
|
|
|
(with-current-buffer buffer-name
|
|
|
|
|
(let ((inhibit-read-only t)
|
|
|
|
|
(json-response (json-parse-buffer :object-type 'alist)))
|
|
|
|
|
(erase-buffer)
|
|
|
|
|
(insert
|
2023-01-19 01:13:49 +00:00
|
|
|
|
(cond ((or (equal content-type "org") (equal content-type "music")) (khoj--extract-entries-as-org json-response query))
|
|
|
|
|
((equal content-type "markdown") (khoj--extract-entries-as-markdown json-response query))
|
|
|
|
|
((equal content-type "ledger") (khoj--extract-entries-as-ledger json-response query))
|
|
|
|
|
((equal content-type "image") (khoj--extract-entries-as-images json-response query))
|
2023-02-24 22:16:13 +00:00
|
|
|
|
(t (khoj--extract-entries json-response query))))
|
2023-02-12 13:33:50 +00:00
|
|
|
|
(cond ((equal content-type "org") (progn (org-mode)
|
|
|
|
|
(visual-line-mode)))
|
|
|
|
|
((equal content-type "markdown") (progn (markdown-mode)
|
|
|
|
|
(visual-line-mode)))
|
2023-01-19 01:13:49 +00:00
|
|
|
|
((equal content-type "ledger") (beancount-mode))
|
|
|
|
|
((equal content-type "music") (progn (org-mode)
|
2022-07-26 23:05:00 +00:00
|
|
|
|
(org-music-mode)))
|
2023-01-19 01:13:49 +00:00
|
|
|
|
((equal content-type "image") (progn (shr-render-region (point-min) (point-max))
|
2022-07-26 23:05:00 +00:00
|
|
|
|
(goto-char (point-min))))
|
|
|
|
|
(t (fundamental-mode))))
|
2022-07-27 00:14:14 +00:00
|
|
|
|
(read-only-mode t)))
|
|
|
|
|
|
2023-03-22 07:13:17 +00:00
|
|
|
|
|
|
|
|
|
;; ----------------
|
|
|
|
|
;; Khoj Chat
|
|
|
|
|
;; ----------------
|
|
|
|
|
|
|
|
|
|
(defun khoj--chat ()
|
|
|
|
|
"Chat with Khoj."
|
|
|
|
|
(let ((query (read-string "Query: ")))
|
|
|
|
|
(khoj--query-chat-api-and-render-messages query khoj--chat-buffer-name)
|
|
|
|
|
(switch-to-buffer khoj--chat-buffer-name)))
|
|
|
|
|
|
2023-03-22 17:08:17 +00:00
|
|
|
|
(defun khoj--load-chat-history (buffer-name)
|
|
|
|
|
(let ((json-response (cdr (assoc 'response (khoj--query-chat-api "")))))
|
|
|
|
|
(with-current-buffer (get-buffer-create buffer-name)
|
|
|
|
|
(erase-buffer)
|
2023-03-22 18:00:43 +00:00
|
|
|
|
(insert "#+STARTUP: showall hidestars\n")
|
2023-03-22 17:08:17 +00:00
|
|
|
|
(thread-last
|
|
|
|
|
json-response
|
|
|
|
|
;; generate chat messages from Khoj Chat API response
|
|
|
|
|
(mapcar #'khoj--render-chat-response)
|
|
|
|
|
;; insert chat messages into Khoj Chat Buffer
|
|
|
|
|
(mapcar #'insert))
|
|
|
|
|
(progn (org-mode)
|
|
|
|
|
(visual-line-mode)
|
|
|
|
|
(read-only-mode t)))))
|
|
|
|
|
|
2023-03-22 07:13:17 +00:00
|
|
|
|
(defun khoj--query-chat-api-and-render-messages (query buffer-name)
|
|
|
|
|
"Send QUERY to Khoj Chat. Render the chat messages from exchange in BUFFER-NAME."
|
|
|
|
|
;; render json response into formatted chat messages
|
2023-03-22 17:08:17 +00:00
|
|
|
|
(if (not (get-buffer buffer-name))
|
|
|
|
|
(khoj--load-chat-history buffer-name)
|
|
|
|
|
(with-current-buffer (get-buffer buffer-name)
|
|
|
|
|
(let ((inhibit-read-only t)
|
|
|
|
|
(json-response (khoj--query-chat-api query)))
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(insert
|
|
|
|
|
(khoj--render-chat-message query "you")
|
|
|
|
|
(khoj--render-chat-response json-response)))
|
|
|
|
|
(progn (org-mode)
|
|
|
|
|
(visual-line-mode))
|
|
|
|
|
(read-only-mode t))))
|
2023-03-22 07:13:17 +00:00
|
|
|
|
|
|
|
|
|
(defun khoj--query-chat-api (query)
|
|
|
|
|
"Send QUERY to Khoj Chat API."
|
|
|
|
|
(let* ((url-request-method "GET")
|
|
|
|
|
(encoded-query (url-hexify-string query))
|
|
|
|
|
(query-url (format "%s/api/chat?q=%s" khoj-server-url encoded-query)))
|
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(erase-buffer)
|
|
|
|
|
(url-insert-file-contents query-url)
|
|
|
|
|
(json-parse-buffer :object-type 'alist))))
|
|
|
|
|
|
|
|
|
|
(defun khoj--render-chat-message (message sender &optional receive-date)
|
|
|
|
|
"Render chat messages as `org-mode' list item.
|
|
|
|
|
MESSAGE is the text of the chat message.
|
|
|
|
|
SENDER is the message sender.
|
|
|
|
|
RECEIVE-DATE is the message receive date."
|
2023-03-22 18:00:43 +00:00
|
|
|
|
(let ((first-message-line (car (split-string message "\n" t)))
|
|
|
|
|
(rest-message-lines (string-join (cdr (split-string message "\n" t)) "\n "))
|
|
|
|
|
(heading-level (if (equal sender "you") "**" "***"))
|
|
|
|
|
(emojified-by (if (equal sender "you") "🤔 *You*" "🦅 *Khoj*"))
|
|
|
|
|
(received (or receive-date (format-time-string "%Y-%m-%d %H:%M:%S"))))
|
|
|
|
|
(format "%s %s: %s\n :PROPERTIES:\n :RECEIVED: [%s]\n :END:\n %s\n"
|
|
|
|
|
heading-level
|
|
|
|
|
emojified-by
|
|
|
|
|
first-message-line
|
|
|
|
|
received
|
|
|
|
|
rest-message-lines)))
|
2023-03-22 07:13:17 +00:00
|
|
|
|
|
|
|
|
|
(defun khoj--generate-reference (index reference)
|
|
|
|
|
"Create `org-mode' links with REFERENCE as link and INDEX as link description."
|
2023-03-22 08:13:00 +00:00
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(org-insert-link
|
|
|
|
|
nil
|
|
|
|
|
(format "%s" (replace-regexp-in-string "\n" " " reference))
|
|
|
|
|
(format "%s" index))
|
|
|
|
|
(format "[%s]" (buffer-substring-no-properties (point-min) (point-max)))))
|
2023-03-22 07:13:17 +00:00
|
|
|
|
|
|
|
|
|
(defun khoj--render-chat-response (json-response)
|
|
|
|
|
"Render chat message using JSON-RESPONSE from Khoj Chat API."
|
2023-03-22 17:08:17 +00:00
|
|
|
|
(let* ((message (cdr (or (assoc 'response json-response) (assoc 'message json-response))))
|
|
|
|
|
(sender (cdr (assoc 'by json-response)))
|
|
|
|
|
(receive-date (cdr (assoc 'created json-response)))
|
|
|
|
|
(context (or (cdr (assoc 'context json-response)) ""))
|
2023-03-22 07:13:17 +00:00
|
|
|
|
(reference-texts (split-string context "\n\n# " t))
|
|
|
|
|
(reference-links (-map-indexed #'khoj--generate-reference reference-texts)))
|
|
|
|
|
(thread-first
|
|
|
|
|
;; extract khoj message from API response and make it bold
|
2023-03-22 18:00:43 +00:00
|
|
|
|
(format "%s" message)
|
2023-03-22 07:13:17 +00:00
|
|
|
|
;; append references to khoj message
|
|
|
|
|
(concat " " (string-join reference-links " "))
|
2023-03-22 17:08:17 +00:00
|
|
|
|
;; Render chat message using data obtained from API
|
|
|
|
|
(khoj--render-chat-message sender receive-date))))
|
2023-03-22 07:13:17 +00:00
|
|
|
|
|
2023-01-20 02:36:54 +00:00
|
|
|
|
|
2023-01-19 04:04:05 +00:00
|
|
|
|
;; ------------------
|
|
|
|
|
;; Incremental Search
|
|
|
|
|
;; ------------------
|
|
|
|
|
|
2022-07-27 16:08:37 +00:00
|
|
|
|
(defun khoj--incremental-search (&optional rerank)
|
2022-08-13 17:29:06 +00:00
|
|
|
|
"Perform Incremental Search on Khoj. Allow optional RERANK of results."
|
2022-07-27 16:08:37 +00:00
|
|
|
|
(let* ((rerank-str (cond (rerank "true") (t "false")))
|
2023-03-22 03:01:14 +00:00
|
|
|
|
(khoj-buffer-name (get-buffer-create khoj--search-buffer-name))
|
2022-07-27 00:14:14 +00:00
|
|
|
|
(query (minibuffer-contents-no-properties))
|
2023-03-22 03:01:14 +00:00
|
|
|
|
(query-url (khoj--construct-search-api-query query khoj--content-type rerank-str)))
|
2022-08-05 16:34:12 +00:00
|
|
|
|
;; Query khoj API only when user in khoj minibuffer and non-empty query
|
|
|
|
|
;; Prevents querying if
|
|
|
|
|
;; 1. user hasn't started typing query
|
|
|
|
|
;; 2. during recursive edits
|
|
|
|
|
;; 3. with contents of other buffers user may jump to
|
2022-08-15 15:41:12 +00:00
|
|
|
|
;; 4. search not triggered right after rerank
|
|
|
|
|
;; ignore to not overwrite reranked results before the user even sees them
|
|
|
|
|
(if khoj--rerank
|
|
|
|
|
(setq khoj--rerank nil)
|
|
|
|
|
(when
|
|
|
|
|
(and
|
|
|
|
|
(not (equal query ""))
|
|
|
|
|
(active-minibuffer-window)
|
|
|
|
|
(equal (current-buffer) khoj--minibuffer-window))
|
2022-07-27 23:37:16 +00:00
|
|
|
|
(progn
|
|
|
|
|
(when rerank
|
2022-08-15 15:41:12 +00:00
|
|
|
|
(setq khoj--rerank t)
|
2022-08-05 16:34:12 +00:00
|
|
|
|
(message "Khoj: Rerank Results"))
|
2023-03-22 03:01:14 +00:00
|
|
|
|
(khoj--query-search-api-and-render-results
|
2022-07-27 23:37:16 +00:00
|
|
|
|
query-url
|
2023-01-21 01:11:00 +00:00
|
|
|
|
khoj--content-type
|
|
|
|
|
query
|
2022-08-15 15:41:12 +00:00
|
|
|
|
khoj-buffer-name))))))
|
2022-07-27 16:08:37 +00:00
|
|
|
|
|
2022-08-13 17:29:06 +00:00
|
|
|
|
(defun khoj--delete-open-network-connections-to-server ()
|
|
|
|
|
"Delete all network connections to khoj server."
|
2022-08-03 12:14:34 +00:00
|
|
|
|
(dolist (proc (process-list))
|
|
|
|
|
(let ((proc-buf (buffer-name (process-buffer proc)))
|
2022-08-09 17:49:34 +00:00
|
|
|
|
(khoj-network-proc-buf (string-join (split-string khoj-server-url "://") " ")))
|
2022-08-03 12:14:34 +00:00
|
|
|
|
(when (string-match (format "%s" khoj-network-proc-buf) proc-buf)
|
|
|
|
|
(delete-process proc)))))
|
|
|
|
|
|
2022-07-27 16:08:37 +00:00
|
|
|
|
(defun khoj--teardown-incremental-search ()
|
2022-08-15 03:14:28 +00:00
|
|
|
|
"Teardown hooks used for incremental search."
|
2022-08-07 12:57:08 +00:00
|
|
|
|
(message "Khoj: Teardown Incremental Search")
|
2022-07-27 16:08:37 +00:00
|
|
|
|
;; unset khoj minibuffer window
|
|
|
|
|
(setq khoj--minibuffer-window nil)
|
2022-08-13 17:29:06 +00:00
|
|
|
|
;; delete open connections to khoj server
|
|
|
|
|
(khoj--delete-open-network-connections-to-server)
|
2022-07-27 16:08:37 +00:00
|
|
|
|
;; remove hooks for khoj incremental query and self
|
|
|
|
|
(remove-hook 'post-command-hook #'khoj--incremental-search)
|
|
|
|
|
(remove-hook 'minibuffer-exit-hook #'khoj--teardown-incremental-search))
|
2022-07-27 00:14:14 +00:00
|
|
|
|
|
2023-01-18 23:59:19 +00:00
|
|
|
|
(defun khoj-incremental ()
|
2022-08-13 17:29:06 +00:00
|
|
|
|
"Natural, Incremental Search for your personal notes, transactions and music."
|
2022-07-27 00:14:14 +00:00
|
|
|
|
(interactive)
|
2023-03-22 03:01:14 +00:00
|
|
|
|
(let* ((khoj-buffer-name (get-buffer-create khoj--search-buffer-name)))
|
2022-07-27 16:08:37 +00:00
|
|
|
|
;; switch to khoj results buffer
|
2022-08-05 14:23:14 +00:00
|
|
|
|
(switch-to-buffer khoj-buffer-name)
|
2022-07-27 16:08:37 +00:00
|
|
|
|
;; open and setup minibuffer for incremental search
|
2022-07-27 00:14:14 +00:00
|
|
|
|
(minibuffer-with-setup-hook
|
|
|
|
|
(lambda ()
|
2022-08-05 15:47:20 +00:00
|
|
|
|
;; Add khoj keybindings for configuring search to minibuffer keybindings
|
|
|
|
|
(khoj--make-search-keymap minibuffer-local-map)
|
2022-08-05 17:15:51 +00:00
|
|
|
|
;; Display information on keybindings to customize khoj search
|
|
|
|
|
(khoj--display-keybinding-info)
|
2022-07-27 16:08:37 +00:00
|
|
|
|
;; set current (mini-)buffer entered as khoj minibuffer
|
|
|
|
|
;; used to query khoj API only when user in khoj minibuffer
|
|
|
|
|
(setq khoj--minibuffer-window (current-buffer))
|
|
|
|
|
(add-hook 'post-command-hook #'khoj--incremental-search) ; do khoj incremental search after every user action
|
|
|
|
|
(add-hook 'minibuffer-exit-hook #'khoj--teardown-incremental-search)) ; teardown khoj incremental search on minibuffer exit
|
2022-07-27 00:14:14 +00:00
|
|
|
|
(read-string khoj--query-prompt))))
|
2022-07-26 22:48:27 +00:00
|
|
|
|
|
2023-01-20 08:14:16 +00:00
|
|
|
|
|
|
|
|
|
;; --------------
|
|
|
|
|
;; Similar Search
|
|
|
|
|
;; --------------
|
|
|
|
|
|
2023-01-20 23:40:15 +00:00
|
|
|
|
(defun khoj--get-current-outline-entry-text ()
|
|
|
|
|
"Get text under current outline section."
|
2023-01-23 21:41:58 +00:00
|
|
|
|
(string-trim
|
|
|
|
|
;; get text of current outline entry
|
|
|
|
|
(cond
|
|
|
|
|
;; when at heading of entry
|
|
|
|
|
((looking-at outline-regexp)
|
|
|
|
|
(buffer-substring-no-properties
|
|
|
|
|
(point)
|
|
|
|
|
(save-excursion (outline-next-heading) (point))))
|
|
|
|
|
;; when within entry
|
|
|
|
|
(t (buffer-substring-no-properties
|
|
|
|
|
(save-excursion (outline-previous-heading) (point))
|
|
|
|
|
(save-excursion (outline-next-heading) (point)))))))
|
2023-01-20 23:40:15 +00:00
|
|
|
|
|
|
|
|
|
(defun khoj--get-current-paragraph-text ()
|
2023-01-23 21:41:58 +00:00
|
|
|
|
"Get trimmed text in current paragraph at point.
|
|
|
|
|
Paragraph only starts at first text after blank line."
|
|
|
|
|
(string-trim
|
|
|
|
|
(cond
|
|
|
|
|
;; when at end of a middle paragraph
|
|
|
|
|
((and (looking-at paragraph-start) (not (equal (point) (point-min))))
|
|
|
|
|
(buffer-substring-no-properties
|
|
|
|
|
(save-excursion (backward-paragraph) (point))
|
|
|
|
|
(point)))
|
|
|
|
|
;; else
|
|
|
|
|
(t (thing-at-point 'paragraph t)))))
|
|
|
|
|
|
2023-01-20 23:40:15 +00:00
|
|
|
|
|
|
|
|
|
(defun khoj--find-similar (&optional content-type)
|
|
|
|
|
"Find items of CONTENT-TYPE in khoj index similar to text surrounding point."
|
|
|
|
|
(interactive)
|
2023-01-20 08:14:16 +00:00
|
|
|
|
(let* ((rerank "true")
|
2023-01-20 23:40:15 +00:00
|
|
|
|
;; set content type to: specified > based on current buffer > default type
|
|
|
|
|
(content-type (or content-type (khoj--buffer-name-to-content-type (buffer-name))))
|
|
|
|
|
;; get text surrounding current point based on the major mode context
|
|
|
|
|
(query (cond
|
|
|
|
|
;; get section outline derived mode like org or markdown
|
|
|
|
|
((or (derived-mode-p 'outline-mode) (equal major-mode 'markdown-mode))
|
|
|
|
|
(khoj--get-current-outline-entry-text))
|
|
|
|
|
;; get paragraph, if in text mode
|
|
|
|
|
(t
|
|
|
|
|
(khoj--get-current-paragraph-text))))
|
2023-03-22 03:01:14 +00:00
|
|
|
|
(query-url (khoj--construct-search-api-query query content-type rerank))
|
2023-01-20 23:40:15 +00:00
|
|
|
|
;; extract heading to show in result buffer from query
|
|
|
|
|
(query-title
|
|
|
|
|
(format "Similar to: %s"
|
|
|
|
|
(replace-regexp-in-string "^[#\\*]* " "" (car (split-string query "\n")))))
|
2023-03-22 03:01:14 +00:00
|
|
|
|
(buffer-name (get-buffer-create khoj--search-buffer-name)))
|
2023-01-20 23:40:15 +00:00
|
|
|
|
(progn
|
2023-03-22 03:01:14 +00:00
|
|
|
|
(khoj--query-search-api-and-render-results
|
2023-01-20 23:40:15 +00:00
|
|
|
|
query-url
|
2023-01-21 01:11:00 +00:00
|
|
|
|
content-type
|
|
|
|
|
query-title
|
2023-01-20 23:40:15 +00:00
|
|
|
|
buffer-name)
|
|
|
|
|
(switch-to-buffer buffer-name)
|
|
|
|
|
(goto-char (point-min)))))
|
2023-01-19 04:04:05 +00:00
|
|
|
|
|
2023-01-20 02:36:54 +00:00
|
|
|
|
|
2023-01-19 04:04:05 +00:00
|
|
|
|
;; ---------
|
|
|
|
|
;; Khoj Menu
|
|
|
|
|
;; ---------
|
|
|
|
|
|
2023-01-18 23:59:19 +00:00
|
|
|
|
(transient-define-argument khoj--content-type-switch ()
|
|
|
|
|
:class 'transient-switches
|
|
|
|
|
:argument-format "--content-type=%s"
|
|
|
|
|
:argument-regexp ".+"
|
2023-01-20 23:40:15 +00:00
|
|
|
|
;; set content type to: last used > based on current buffer > default type
|
2023-01-19 01:13:49 +00:00
|
|
|
|
:init-value (lambda (obj) (oset obj value (format "--content-type=%s" (or khoj--content-type (khoj--buffer-name-to-content-type (buffer-name))))))
|
2023-01-19 01:00:12 +00:00
|
|
|
|
;; dynamically set choices to content types enabled on khoj backend
|
2023-01-19 22:33:56 +00:00
|
|
|
|
:choices (or (ignore-errors (mapcar #'symbol-name (khoj--get-enabled-content-types))) '("org" "markdown" "ledger" "music" "image")))
|
2023-01-18 23:59:19 +00:00
|
|
|
|
|
2023-01-19 04:04:05 +00:00
|
|
|
|
(transient-define-suffix khoj--search-command (&optional args)
|
2023-01-18 23:59:19 +00:00
|
|
|
|
(interactive (list (transient-args transient-current-command)))
|
|
|
|
|
(progn
|
2023-01-20 23:40:15 +00:00
|
|
|
|
;; set content type to: specified > last used > based on current buffer > default type
|
2023-01-19 01:13:49 +00:00
|
|
|
|
(setq khoj--content-type (or (transient-arg-value "--content-type=" args) (khoj--buffer-name-to-content-type (buffer-name))))
|
2023-01-20 23:40:15 +00:00
|
|
|
|
;; set results count to: specified > last used > to default
|
2023-01-18 23:59:19 +00:00
|
|
|
|
(setq khoj-results-count (or (transient-arg-value "--results-count=" args) khoj-results-count))
|
|
|
|
|
;; trigger incremental search
|
|
|
|
|
(call-interactively #'khoj-incremental)))
|
|
|
|
|
|
2023-01-20 23:40:15 +00:00
|
|
|
|
(transient-define-suffix khoj--find-similar-command (&optional args)
|
|
|
|
|
"Find items similar to current item at point."
|
|
|
|
|
(interactive (list (transient-args transient-current-command)))
|
|
|
|
|
(progn
|
|
|
|
|
;; set content type to: specified > last used > based on current buffer > default type
|
|
|
|
|
(setq khoj--content-type (or (transient-arg-value "--content-type=" args) (khoj--buffer-name-to-content-type (buffer-name))))
|
|
|
|
|
;; set results count to: specified > last used > to default
|
|
|
|
|
(setq khoj-results-count (or (transient-arg-value "--results-count=" args) khoj-results-count))
|
|
|
|
|
(khoj--find-similar khoj--content-type)))
|
2023-01-20 08:14:16 +00:00
|
|
|
|
|
2023-01-19 04:04:05 +00:00
|
|
|
|
(transient-define-suffix khoj--update-command (&optional args)
|
|
|
|
|
"Call khoj API to update index of specified content type."
|
2023-01-19 02:07:59 +00:00
|
|
|
|
(interactive (list (transient-args transient-current-command)))
|
|
|
|
|
(let* ((force-update (if (member "--force-update" args) "true" "false"))
|
2023-01-20 23:40:15 +00:00
|
|
|
|
;; set content type to: specified > last used > based on current buffer > default type
|
2023-01-19 02:07:59 +00:00
|
|
|
|
(content-type (or (transient-arg-value "--content-type=" args) (khoj--buffer-name-to-content-type (buffer-name))))
|
2023-01-19 04:04:05 +00:00
|
|
|
|
(update-url (format "%s/api/update?t=%s&force=%s" khoj-server-url content-type force-update))
|
2023-01-19 02:07:59 +00:00
|
|
|
|
(url-request-method "GET"))
|
2023-01-20 23:40:15 +00:00
|
|
|
|
(progn
|
|
|
|
|
(setq khoj--content-type content-type)
|
|
|
|
|
(url-retrieve update-url (lambda (_) (message "Khoj %s index %supdated!" content-type (if (member "--force-update" args) "force " "")))))))
|
2023-01-18 23:59:19 +00:00
|
|
|
|
|
2023-03-22 07:13:17 +00:00
|
|
|
|
(transient-define-suffix khoj--chat-command (&optional args)
|
|
|
|
|
"Command to Chat with Khoj."
|
|
|
|
|
(interactive (list (transient-args transient-current-command)))
|
|
|
|
|
(khoj--chat))
|
|
|
|
|
|
2023-01-19 04:04:05 +00:00
|
|
|
|
(transient-define-prefix khoj-menu ()
|
|
|
|
|
"Create Khoj Menu to Configure and Execute Commands."
|
2023-03-22 07:13:17 +00:00
|
|
|
|
[["Configure Search"
|
|
|
|
|
("n" "Results Count" "--results-count=" :init-value (lambda (obj) (oset obj value (format "%s" khoj-results-count))))
|
2023-01-19 02:07:59 +00:00
|
|
|
|
("t" "Content Type" khoj--content-type-switch)]
|
2023-01-19 06:02:59 +00:00
|
|
|
|
["Configure Update"
|
2023-01-19 02:07:59 +00:00
|
|
|
|
("-f" "Force Update" "--force-update")]]
|
|
|
|
|
[["Act"
|
2023-03-22 07:13:17 +00:00
|
|
|
|
("c" "Chat" khoj--chat-command)
|
2023-01-19 04:04:05 +00:00
|
|
|
|
("s" "Search" khoj--search-command)
|
2023-01-20 23:40:15 +00:00
|
|
|
|
("f" "Find Similar" khoj--find-similar-command)
|
2023-01-19 05:47:07 +00:00
|
|
|
|
("u" "Update" khoj--update-command)
|
|
|
|
|
("q" "Quit" transient-quit-one)]])
|
2023-01-19 04:04:05 +00:00
|
|
|
|
|
2023-01-20 02:36:54 +00:00
|
|
|
|
|
2023-01-19 04:04:05 +00:00
|
|
|
|
;; ----------
|
|
|
|
|
;; Entrypoint
|
|
|
|
|
;; ----------
|
2023-01-18 23:59:19 +00:00
|
|
|
|
|
2021-09-10 05:10:37 +00:00
|
|
|
|
;;;###autoload
|
2023-01-19 04:04:05 +00:00
|
|
|
|
(defun khoj ()
|
|
|
|
|
"Natural, Incremental Search for your personal notes, transactions and images."
|
|
|
|
|
(interactive)
|
|
|
|
|
(khoj-menu))
|
2021-08-16 08:27:46 +00:00
|
|
|
|
|
2022-07-19 14:26:16 +00:00
|
|
|
|
(provide 'khoj)
|
2021-08-16 08:27:46 +00:00
|
|
|
|
|
2022-07-19 14:26:16 +00:00
|
|
|
|
;;; khoj.el ends here
|