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 22:25:34 +00:00
|
|
|
|
;; Package-Requires: ((emacs "27.1") (transient "0.3.0") (dash "2.19.1"))
|
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)
|
|
|
|
|
|
2023-03-26 03:12:06 +00:00
|
|
|
|
(defcustom is-khoj-server-local t
|
|
|
|
|
"Is Khoj server on local machine?."
|
|
|
|
|
:group 'khoj
|
|
|
|
|
:type 'boolean)
|
|
|
|
|
|
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.")
|
|
|
|
|
|
2023-03-24 22:28:13 +00:00
|
|
|
|
(declare-function org-element-property "org-mode" (PROPERTY ELEMENT))
|
|
|
|
|
(declare-function org-element-type "org-mode" (ELEMENT))
|
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-03-24 18:43:11 +00:00
|
|
|
|
(defvar khoj--reference-count 0 "Track number of references currently in chat bufffer.")
|
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-03-26 01:41:51 +00:00
|
|
|
|
|
|
|
|
|
;; ----------------
|
|
|
|
|
;; Khoj Setup
|
|
|
|
|
;; ----------------
|
|
|
|
|
(defcustom khoj-server-command
|
|
|
|
|
(or (executable-find "khoj")
|
|
|
|
|
(executable-find "khoj.exe")
|
|
|
|
|
"khoj")
|
|
|
|
|
"Command to interact with Khoj server."
|
|
|
|
|
:group 'khoj
|
|
|
|
|
:type 'string)
|
|
|
|
|
|
2023-03-26 02:38:46 +00:00
|
|
|
|
(defcustom khoj-server-args '("--no-gui")
|
|
|
|
|
"Arguments to pass to Khoj server on startup."
|
|
|
|
|
:group 'khoj
|
|
|
|
|
:type '(repeat string))
|
|
|
|
|
|
2023-03-26 01:41:51 +00:00
|
|
|
|
(defcustom khoj-server-python-command
|
|
|
|
|
(if (equal system-type 'windows-nt)
|
|
|
|
|
(or (executable-find "py")
|
|
|
|
|
(executable-find "pythonw")
|
|
|
|
|
"python")
|
|
|
|
|
(if (executable-find "python")
|
|
|
|
|
"python"
|
|
|
|
|
;; Fallback on systems where python is not
|
|
|
|
|
;; symlinked to python3.
|
|
|
|
|
"python3"))
|
|
|
|
|
"The Python interpreter used for the Khoj server.
|
|
|
|
|
|
|
|
|
|
Khoj will try to use the system interpreter if it exists. If you wish
|
|
|
|
|
to use a specific python interpreter (from a virtual environment
|
|
|
|
|
for example), set this to the full interpreter path."
|
|
|
|
|
:type '(choice (const :tag "python" "python")
|
|
|
|
|
(const :tag "python3" "python3")
|
|
|
|
|
(const :tag "pythonw (Python on Windows)" "pythonw")
|
|
|
|
|
(const :tag "py (other Python on Windows)" "py")
|
|
|
|
|
(string :tag "Other"))
|
|
|
|
|
:safe (lambda (val)
|
|
|
|
|
(member val '("python" "python3" "pythonw" "py")))
|
|
|
|
|
:group 'khoj)
|
|
|
|
|
|
2023-03-26 11:44:10 +00:00
|
|
|
|
(defcustom khoj-org-files-index (org-agenda-files t t)
|
2023-03-26 21:38:17 +00:00
|
|
|
|
"List of org-files to index on khoj server."
|
2023-03-26 11:44:10 +00:00
|
|
|
|
:group 'khoj
|
|
|
|
|
:type '(repeat string))
|
|
|
|
|
|
2023-03-26 21:38:17 +00:00
|
|
|
|
(defcustom khoj-openai-api-key nil
|
|
|
|
|
"OpenAI API key used to configure chat on khoj server."
|
|
|
|
|
:group 'khoj
|
|
|
|
|
:type 'string)
|
|
|
|
|
|
2023-03-26 02:38:46 +00:00
|
|
|
|
(defvar khoj--server-process nil "Track Khoj server process.")
|
2023-03-26 04:56:04 +00:00
|
|
|
|
(defvar khoj--server-name "*khoj-server*" "Track Khoj server buffer.")
|
|
|
|
|
(defvar khoj--server-ready? nil "Track if khoj server is ready to receive API calls.")
|
2023-03-26 22:52:32 +00:00
|
|
|
|
(defvar khoj--server-configured? t "Track if khoj server is configured to receive API calls.")
|
|
|
|
|
(defvar khoj--progressbar '(🌑 🌘 🌗 🌖 🌕 🌔 🌓 🌒) "Track progress via moon phase animations.")
|
2023-03-26 02:38:46 +00:00
|
|
|
|
|
2023-03-26 01:41:51 +00:00
|
|
|
|
(defun khoj--server-get-version ()
|
|
|
|
|
"Return the khoj server version."
|
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(call-process khoj-server-command nil t nil "--version")
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(re-search-forward "\\([a-z0-9.]+\\)")
|
|
|
|
|
(match-string 1)))
|
|
|
|
|
|
|
|
|
|
(defun khoj--server-install-upgrade ()
|
|
|
|
|
"Install or upgrade the khoj server."
|
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(message "khoj.el: Installing server...")
|
|
|
|
|
(if (/= (apply 'call-process khoj-server-python-command
|
|
|
|
|
nil t nil
|
|
|
|
|
"-m" "pip" "install" "--upgrade"
|
|
|
|
|
'("khoj-assistant"))
|
|
|
|
|
0)
|
|
|
|
|
(message "khoj.el: Failed to install Khoj server. Please install it manually using pip install `khoj-assistant'.\n%s" (buffer-string))
|
|
|
|
|
(message "khoj.el: Installed and upgraded Khoj server version: %s" (khoj--server-get-version)))))
|
|
|
|
|
|
2023-03-26 02:38:46 +00:00
|
|
|
|
(defun khoj--server-start ()
|
|
|
|
|
"Start the khoj server."
|
2023-03-26 18:11:43 +00:00
|
|
|
|
(interactive)
|
2023-03-26 02:38:46 +00:00
|
|
|
|
(let* ((url-parts (split-string (cadr (split-string khoj-server-url "://")) ":"))
|
|
|
|
|
(server-host (nth 0 url-parts))
|
|
|
|
|
(server-port (or (nth 1 url-parts) "80"))
|
|
|
|
|
(server-args (append khoj-server-args
|
|
|
|
|
(list (format "--host=%s" server-host)
|
|
|
|
|
(format "--port=%s" server-port)))))
|
|
|
|
|
(message "khoj.el: Starting server at %s %s..." server-host server-port)
|
|
|
|
|
(setq khoj--server-process
|
2023-03-26 04:56:04 +00:00
|
|
|
|
(make-process
|
|
|
|
|
:name khoj--server-name
|
|
|
|
|
:buffer khoj--server-name
|
|
|
|
|
:command (append (list khoj-server-command) server-args)
|
|
|
|
|
:sentinel (lambda (process event)
|
|
|
|
|
(message "khoj.el: khoj server stopped with: %s" event)
|
|
|
|
|
(setq khoj--server-ready? nil))
|
|
|
|
|
:filter (lambda (process msg)
|
|
|
|
|
(cond ((string-match (format "Uvicorn running on %s" khoj-server-url) msg)
|
2023-03-26 18:16:05 +00:00
|
|
|
|
(progn
|
|
|
|
|
(setq khoj--server-ready? t)
|
|
|
|
|
(khoj--server-configure)))
|
2023-03-26 22:52:32 +00:00
|
|
|
|
((string-match "Batches: " msg)
|
|
|
|
|
(when (string-match "\\([0-9]+\\.[0-9]+\\|\\([0-9]+\\)\\)%?" msg)
|
|
|
|
|
(message "khoj.el: %s updating index %s"
|
|
|
|
|
(nth (% (string-to-number (match-string 1 msg)) (length khoj--progressbar)) khoj--progressbar)
|
|
|
|
|
(match-string 0 msg)))
|
|
|
|
|
(setq khoj--server-configured? nil))
|
|
|
|
|
((and (not khoj--server-configured?)
|
|
|
|
|
(string-match "Processor reconfigured via API" msg))
|
|
|
|
|
(setq khoj--server-configured? t))
|
2023-03-26 21:46:31 +00:00
|
|
|
|
((and (not khoj--server-ready?)
|
|
|
|
|
(or (string-match "configure.py" msg)
|
|
|
|
|
(string-match "main.py" msg)
|
|
|
|
|
(string-match "api.py" msg)))
|
2023-03-26 04:56:04 +00:00
|
|
|
|
(dolist (line (split-string msg "\n"))
|
|
|
|
|
(message "khoj.el: %s" (nth 1 (split-string msg " " t " *"))))))
|
|
|
|
|
;; call default process filter to write output to process buffer
|
2023-03-26 21:46:31 +00:00
|
|
|
|
(internal-default-process-filter process msg))))
|
2023-03-26 04:56:04 +00:00
|
|
|
|
(set-process-query-on-exit-flag khoj--server-process nil)
|
|
|
|
|
(when (not khoj--server-process)
|
|
|
|
|
(message "khoj.el: Failed to start Khoj server. Please start it manually by running `khoj' on terminal.\n%s" (buffer-string)))))
|
2023-03-26 02:38:46 +00:00
|
|
|
|
|
2023-03-26 03:12:06 +00:00
|
|
|
|
(defun khoj--server-running? ()
|
|
|
|
|
"Check if the khoj server is running."
|
2023-03-26 18:29:58 +00:00
|
|
|
|
(when (or
|
|
|
|
|
;; check for when server process handled from within emacs
|
|
|
|
|
(and khoj--server-process
|
|
|
|
|
(not (null (process-live-p khoj--server-process))))
|
|
|
|
|
;; else general check via ping to khoj-server-url
|
|
|
|
|
(ignore-errors
|
|
|
|
|
(not (null (url-retrieve-synchronously (format "%s/api/config/data/default" khoj-server-url))))))
|
|
|
|
|
(setq khoj--server-ready? t)))
|
2023-03-26 03:12:06 +00:00
|
|
|
|
|
|
|
|
|
(defun khoj--server-stop ()
|
|
|
|
|
"Stop the khoj server."
|
2023-03-26 18:11:43 +00:00
|
|
|
|
(interactive)
|
2023-03-26 03:12:06 +00:00
|
|
|
|
(when (khoj--server-running?)
|
|
|
|
|
(message "khoj.el: Stopping server...")
|
|
|
|
|
(kill-process khoj--server-process)
|
|
|
|
|
(message "khoj.el: Stopped server.")))
|
|
|
|
|
|
|
|
|
|
(defun khoj--server-restart ()
|
|
|
|
|
"Restart the khoj server."
|
2023-03-26 18:11:43 +00:00
|
|
|
|
(interactive)
|
2023-03-26 03:12:06 +00:00
|
|
|
|
(khoj--server-stop)
|
|
|
|
|
(khoj--server-start))
|
|
|
|
|
|
|
|
|
|
(defun khoj--server-setup ()
|
|
|
|
|
"Install and start the khoj server, if required."
|
2023-03-26 18:11:43 +00:00
|
|
|
|
(interactive)
|
2023-03-26 03:12:06 +00:00
|
|
|
|
;; Install khoj server, if not available but expected on local machine
|
|
|
|
|
(when (and is-khoj-server-local
|
|
|
|
|
(or (not (executable-find khoj-server-command))
|
|
|
|
|
(not (khoj--server-get-version))))
|
|
|
|
|
(khoj--server-install-upgrade))
|
|
|
|
|
;; Start khoj server if not running at expected URL
|
|
|
|
|
(when (not (khoj--server-running?))
|
|
|
|
|
(khoj--server-start)))
|
|
|
|
|
|
2023-03-26 20:44:03 +00:00
|
|
|
|
(defun khoj--get-directory-from-config (config keys &optional level)
|
|
|
|
|
"Extract directory under specified KEYS in CONFIG and trim it to LEVEL.
|
2023-03-26 11:44:10 +00:00
|
|
|
|
CONFIG is json obtained from Khoj config API."
|
2023-03-26 20:44:03 +00:00
|
|
|
|
(let ((item config))
|
|
|
|
|
(dolist (key keys)
|
|
|
|
|
(setq item (cdr (assoc key item))))
|
|
|
|
|
(-> item
|
|
|
|
|
(split-string "/")
|
|
|
|
|
(butlast (or level nil))
|
|
|
|
|
(string-join "/"))))
|
2023-03-26 11:44:10 +00:00
|
|
|
|
|
|
|
|
|
(defun khoj--server-configure ()
|
2023-03-26 21:38:17 +00:00
|
|
|
|
"Configure the the Khoj server for search and chat."
|
2023-03-26 11:44:10 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(let* ((current-config
|
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(url-insert-file-contents (format "%s/api/config/data" khoj-server-url))
|
|
|
|
|
(ignore-error json-end-of-file (json-parse-buffer :object-type 'alist :array-type 'list :null-object json-null :false-object json-false))))
|
|
|
|
|
(default-config
|
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(url-insert-file-contents (format "%s/api/config/data/default" khoj-server-url))
|
|
|
|
|
(ignore-error json-end-of-file (json-parse-buffer :object-type 'alist :array-type 'list :null-object json-null :false-object json-false))))
|
2023-03-26 20:44:03 +00:00
|
|
|
|
(default-index-dir (khoj--get-directory-from-config default-config '(content-type org embeddings-file)))
|
2023-03-26 21:38:17 +00:00
|
|
|
|
(default-chat-dir (khoj--get-directory-from-config default-config '(processor conversation conversation-logfile)))
|
|
|
|
|
(default-model (or (alist-get 'model (alist-get 'conversation (alist-get 'processor default-config))) "text-davinci-003"))
|
2023-03-26 11:44:10 +00:00
|
|
|
|
(config (or current-config default-config)))
|
2023-03-26 21:38:17 +00:00
|
|
|
|
|
|
|
|
|
;; Configure content types
|
2023-03-26 11:44:10 +00:00
|
|
|
|
(cond
|
|
|
|
|
;; If khoj backend is not configured yet
|
|
|
|
|
((not current-config)
|
|
|
|
|
(setq config (delq (assoc 'content-type config) config))
|
2023-03-26 21:38:17 +00:00
|
|
|
|
(add-to-list 'config
|
|
|
|
|
`(content-type . ((org . ((input-files . ,khoj-org-files-index)
|
|
|
|
|
(input-filter . ,json-null)
|
|
|
|
|
(compressed-jsonl . ,(format "%s/org.jsonl.gz" default-index-dir))
|
|
|
|
|
(embeddings-file . ,(format "%s/org.pt" default-index-dir))
|
|
|
|
|
(index-heading-entries . ,json-false)))))))
|
2023-03-26 11:44:10 +00:00
|
|
|
|
|
|
|
|
|
;; Else if khoj config has no org content config
|
|
|
|
|
((not (alist-get 'org (alist-get 'content-type config)))
|
|
|
|
|
(let ((new-content-type (alist-get 'content-type config)))
|
|
|
|
|
(setq new-content-type (delq (assoc 'org new-content-type) new-content-type))
|
|
|
|
|
(add-to-list 'new-content-type `(org . ((input-files . ,khoj-org-files-index)
|
|
|
|
|
(input-filter . ,json-null)
|
|
|
|
|
(compressed-jsonl . ,(format "%s/org.jsonl.gz" default-index-dir))
|
|
|
|
|
(embeddings-file . ,(format "%s/org.pt" default-index-dir))
|
|
|
|
|
(index-heading-entries . ,json-false))))
|
|
|
|
|
(setq config (delq (assoc 'content-type config) config))
|
2023-03-26 21:38:17 +00:00
|
|
|
|
(add-to-list 'config `(content-type . ,new-content-type))))
|
2023-03-26 11:44:10 +00:00
|
|
|
|
|
2023-03-26 21:38:17 +00:00
|
|
|
|
;; Else if khoj is not configured to index specified org files
|
2023-03-26 11:44:10 +00:00
|
|
|
|
((not (equal (alist-get 'input-files (alist-get 'org (alist-get 'content-type config))) khoj-org-files-index))
|
2023-03-26 20:44:03 +00:00
|
|
|
|
(let* ((index-directory (khoj--get-directory-from-config config '(content-type org embeddings-file)))
|
2023-03-26 11:44:10 +00:00
|
|
|
|
(new-content-type (alist-get 'content-type config)))
|
|
|
|
|
(setq new-content-type (delq (assoc 'org new-content-type) new-content-type))
|
|
|
|
|
(add-to-list 'new-content-type `(org . ((input-files . ,khoj-org-files-index)
|
|
|
|
|
(input-filter . ,json-null)
|
|
|
|
|
(compressed-jsonl . ,(format "%s/org.jsonl.gz" index-directory))
|
|
|
|
|
(embeddings-file . ,(format "%s/org.pt" index-directory))
|
|
|
|
|
(index-heading-entries . ,json-false))))
|
|
|
|
|
(setq config (delq (assoc 'content-type config) config))
|
2023-03-26 21:38:17 +00:00
|
|
|
|
(add-to-list 'config `(content-type . ,new-content-type)))))
|
|
|
|
|
|
|
|
|
|
;; Configure processors
|
|
|
|
|
(cond
|
|
|
|
|
((not khoj-openai-api-key)
|
|
|
|
|
(setq config (delq (assoc 'processor config) config)))
|
|
|
|
|
|
|
|
|
|
((not current-config)
|
|
|
|
|
(setq config (delq (assoc 'processor config) config))
|
|
|
|
|
(add-to-list 'config
|
|
|
|
|
`(processor . ((conversation . ((conversation-logfile . ,(format "%s/conversation.json" default-chat-dir))
|
|
|
|
|
(model . ,default-model)
|
|
|
|
|
(openai-api-key . ,khoj-openai-api-key)))))))
|
|
|
|
|
|
|
|
|
|
((not (alist-get 'conversation (alist-get 'processor config)))
|
|
|
|
|
(let ((new-processor-type (alist-get 'processor config)))
|
|
|
|
|
(setq new-processor-type (delq (assoc 'conversation new-processor-type) new-processor-type))
|
|
|
|
|
(add-to-list 'new-processor-type `(conversation . ((conversation-logfile . ,(format "%s/conversation.json" default-chat-dir))
|
|
|
|
|
(model . ,default-model)
|
|
|
|
|
(openai-api-key . ,khoj-openai-api-key))))
|
|
|
|
|
(setq config (delq (assoc 'processor config) config))
|
|
|
|
|
(add-to-list 'config `(processor . ,new-processor-type))))
|
|
|
|
|
|
|
|
|
|
;; Else if khoj is not configured with specified openai api key
|
|
|
|
|
((not (equal (alist-get 'openai-api-key (alist-get 'conversation (alist-get 'processor config))) khoj-openai-api-key))
|
|
|
|
|
(let* ((chat-directory (khoj--get-directory-from-config config '(processor conversation conversation-logfile)))
|
|
|
|
|
(model-name (khoj--get-directory-from-config config '(processor conversation model)))
|
|
|
|
|
(new-processor-type (alist-get 'processor config)))
|
|
|
|
|
(setq new-processor-type (delq (assoc 'conversation new-processor-type) new-processor-type))
|
|
|
|
|
(add-to-list 'new-processor-type `(conversation . ((conversation-logfile . ,(format "%s/conversation.json" chat-directory))
|
|
|
|
|
(model . ,model-name)
|
|
|
|
|
(openai-api-key . ,khoj-openai-api-key))))
|
|
|
|
|
(setq config (delq (assoc 'processor config) config))
|
|
|
|
|
(add-to-list 'config `(processor . ,new-processor-type)))))
|
|
|
|
|
|
|
|
|
|
;; Update server with latest configuration
|
|
|
|
|
(khoj--post-new-config config)
|
|
|
|
|
(cond ((not current-config)
|
|
|
|
|
(message "khoj.el: ⚙️ Generated new khoj server configuration."))
|
|
|
|
|
((not (equal config current-config))
|
|
|
|
|
(message "Khoj: ⚙️ Updated khoj server configuration")))))
|
2023-03-26 11:44:10 +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-03-25 23:34:18 +00:00
|
|
|
|
(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 "* %s\n%s\n" 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
|
|
|
|
|
;; --------------
|
|
|
|
|
|
2023-03-26 11:44:10 +00:00
|
|
|
|
(defun khoj--post-new-config (config)
|
|
|
|
|
"Configure khoj server with provided CONFIG."
|
|
|
|
|
;; POST provided config to khoj server
|
|
|
|
|
(let ((url-request-method "POST")
|
|
|
|
|
(url-request-extra-headers '(("Content-Type" . "application/json")))
|
|
|
|
|
(url-request-data (json-encode-alist config))
|
|
|
|
|
(config-url (format "%s/api/config/data" khoj-server-url)))
|
|
|
|
|
(with-current-buffer (url-retrieve-synchronously config-url)
|
|
|
|
|
(buffer-string)))
|
|
|
|
|
;; Update index on khoj server after configuration update
|
|
|
|
|
(let ((khoj--server-ready? nil))
|
|
|
|
|
(url-retrieve (format "%s/api/update?t=org" khoj-server-url) #'identity)))
|
|
|
|
|
|
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
|
|
|
|
|
(url-insert-file-contents config-url)
|
2023-02-24 10:01:51 +00:00
|
|
|
|
(thread-last
|
|
|
|
|
(json-parse-buffer :object-type 'alist)
|
2023-03-22 22:25:34 +00:00
|
|
|
|
(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-03-25 23:34:18 +00:00
|
|
|
|
(cond ((equal content-type "org") (progn (visual-line-mode)
|
|
|
|
|
(org-mode)
|
|
|
|
|
(setq-local
|
|
|
|
|
org-startup-folded "showall"
|
|
|
|
|
org-hide-leading-stars t
|
|
|
|
|
org-startup-with-inline-images t)
|
|
|
|
|
(org-set-startup-visibility)))
|
2023-02-12 13:33:50 +00:00
|
|
|
|
((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."
|
2023-03-24 18:43:11 +00:00
|
|
|
|
(interactive)
|
2023-03-24 06:43:46 +00:00
|
|
|
|
(when (not (get-buffer khoj--chat-buffer-name))
|
|
|
|
|
(khoj--load-chat-history khoj--chat-buffer-name))
|
|
|
|
|
(switch-to-buffer khoj--chat-buffer-name)
|
2023-03-22 07:13:17 +00:00
|
|
|
|
(let ((query (read-string "Query: ")))
|
2023-03-24 06:43:46 +00:00
|
|
|
|
(when (not (string-empty-p query))
|
|
|
|
|
(khoj--query-chat-api-and-render-messages query khoj--chat-buffer-name))))
|
2023-03-22 07:13:17 +00:00
|
|
|
|
|
2023-03-22 17:08:17 +00:00
|
|
|
|
(defun khoj--load-chat-history (buffer-name)
|
2023-03-24 22:28:13 +00:00
|
|
|
|
"Load Khoj Chat conversation history into BUFFER-NAME."
|
2023-03-22 17:08:17 +00:00
|
|
|
|
(let ((json-response (cdr (assoc 'response (khoj--query-chat-api "")))))
|
|
|
|
|
(with-current-buffer (get-buffer-create buffer-name)
|
|
|
|
|
(erase-buffer)
|
2023-03-25 23:03:30 +00:00
|
|
|
|
(insert "* Khoj Chat\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
|
2023-03-22 22:25:34 +00:00
|
|
|
|
(mapc #'insert))
|
2023-03-25 22:28:44 +00:00
|
|
|
|
(progn
|
2023-03-25 23:03:30 +00:00
|
|
|
|
(org-mode)
|
2023-03-25 22:28:44 +00:00
|
|
|
|
(khoj--add-hover-text-to-footnote-refs (point-min))
|
|
|
|
|
|
|
|
|
|
;; render reference footnotes as superscript
|
|
|
|
|
(setq-local
|
2023-03-25 23:03:30 +00:00
|
|
|
|
org-startup-folded "showall"
|
|
|
|
|
org-hide-leading-stars t
|
2023-03-25 22:28:44 +00:00
|
|
|
|
org-use-sub-superscripts '{}
|
|
|
|
|
org-pretty-entities-include-sub-superscripts t
|
|
|
|
|
org-pretty-entities t)
|
2023-03-25 23:03:30 +00:00
|
|
|
|
(org-set-startup-visibility)
|
2023-03-25 22:28:44 +00:00
|
|
|
|
|
|
|
|
|
;; create khoj chat shortcut keybindings
|
|
|
|
|
(use-local-map (copy-keymap org-mode-map))
|
|
|
|
|
(local-set-key (kbd "m") #'khoj--chat)
|
|
|
|
|
(local-set-key (kbd "C-x m") #'khoj--chat)
|
|
|
|
|
|
2023-03-25 23:03:30 +00:00
|
|
|
|
;; enable minor modes for khoj chat
|
2023-03-25 22:28:44 +00:00
|
|
|
|
(visual-line-mode)
|
|
|
|
|
(read-only-mode t)))))
|
2023-03-22 17:08:17 +00:00
|
|
|
|
|
2023-03-24 10:51:39 +00:00
|
|
|
|
(defun khoj--add-hover-text-to-footnote-refs (start-pos)
|
2023-03-24 22:28:13 +00:00
|
|
|
|
"Show footnote defs on mouse hover on footnote refs from START-POS."
|
2023-03-24 10:51:39 +00:00
|
|
|
|
(org-with-wide-buffer
|
|
|
|
|
(goto-char start-pos)
|
|
|
|
|
(while (re-search-forward org-footnote-re nil t)
|
|
|
|
|
(backward-char)
|
|
|
|
|
(let* ((context (org-element-context))
|
|
|
|
|
(label (org-element-property :label context))
|
|
|
|
|
(footnote-def (nth 3 (org-footnote-get-definition label)))
|
|
|
|
|
(footnote-width (if (< (length footnote-def) 70) nil 70))
|
|
|
|
|
(begin-pos (org-element-property :begin context))
|
|
|
|
|
(end-pos (org-element-property :end context))
|
|
|
|
|
(overlay (make-overlay begin-pos end-pos)))
|
|
|
|
|
(when (memq (org-element-type context)
|
|
|
|
|
'(footnote-reference))
|
|
|
|
|
(-->
|
|
|
|
|
footnote-def
|
2023-03-24 22:28:13 +00:00
|
|
|
|
;; truncate footnote definition if required
|
2023-03-24 10:51:39 +00:00
|
|
|
|
(substring it 0 footnote-width)
|
2023-03-24 22:28:13 +00:00
|
|
|
|
;; append continuation suffix if truncated
|
2023-03-24 10:51:39 +00:00
|
|
|
|
(concat it (if footnote-width "..." ""))
|
2023-03-24 22:28:13 +00:00
|
|
|
|
;; show definition on hover on footnote reference
|
2023-03-24 10:51:39 +00:00
|
|
|
|
(overlay-put overlay 'help-echo it)))))))
|
|
|
|
|
|
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-24 06:43:46 +00:00
|
|
|
|
(with-current-buffer (get-buffer buffer-name)
|
|
|
|
|
(let ((inhibit-read-only t)
|
2023-03-24 10:51:39 +00:00
|
|
|
|
(new-content-start-pos (point-max))
|
2023-03-24 08:27:30 +00:00
|
|
|
|
(query-time (format-time-string "%F %T"))
|
2023-03-24 06:43:46 +00:00
|
|
|
|
(json-response (khoj--query-chat-api query)))
|
2023-03-24 10:51:39 +00:00
|
|
|
|
(goto-char new-content-start-pos)
|
2023-03-24 06:43:46 +00:00
|
|
|
|
(insert
|
2023-03-24 08:27:30 +00:00
|
|
|
|
(khoj--render-chat-message query "you" query-time)
|
2023-03-24 10:51:39 +00:00
|
|
|
|
(khoj--render-chat-response json-response))
|
|
|
|
|
(khoj--add-hover-text-to-footnote-refs new-content-start-pos))
|
2023-03-24 22:28:13 +00:00
|
|
|
|
(progn
|
|
|
|
|
(org-set-startup-visibility)
|
|
|
|
|
(visual-line-mode)
|
|
|
|
|
(re-search-backward "^\*+ 🦅" nil 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
|
2023-03-26 19:08:21 +00:00
|
|
|
|
(condition-case ex
|
|
|
|
|
(progn
|
|
|
|
|
(url-insert-file-contents query-url)
|
|
|
|
|
(json-parse-buffer :object-type 'alist))
|
|
|
|
|
('file-error (cond ((string-match "Internal server error" (nth 2 ex))
|
|
|
|
|
(message "Chat processor not configured. Configure OpenAI API key and restart it. Exception: [%s]" ex))
|
|
|
|
|
(t (message "Chat exception: [%s]" ex))))))))
|
|
|
|
|
|
2023-03-22 07:13:17 +00:00
|
|
|
|
|
|
|
|
|
(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)))
|
2023-03-24 07:25:00 +00:00
|
|
|
|
(rest-message-lines (string-join (cdr (split-string message "\n" t)) "\n"))
|
2023-03-22 18:00:43 +00:00
|
|
|
|
(heading-level (if (equal sender "you") "**" "***"))
|
2023-03-24 14:24:42 +00:00
|
|
|
|
(emojified-sender (if (equal sender "you") "🤔 *You*" "🦅 *Khoj*"))
|
|
|
|
|
(suffix-newlines (if (equal sender "khoj") "\n\n" ""))
|
2023-03-22 22:25:34 +00:00
|
|
|
|
(received (or receive-date (format-time-string "%F %T"))))
|
2023-03-24 14:24:42 +00:00
|
|
|
|
(format "%s %s: %s\n :PROPERTIES:\n :RECEIVED: [%s]\n :END:\n%s\n%s"
|
2023-03-22 18:00:43 +00:00
|
|
|
|
heading-level
|
2023-03-24 14:24:42 +00:00
|
|
|
|
emojified-sender
|
2023-03-22 18:00:43 +00:00
|
|
|
|
first-message-line
|
|
|
|
|
received
|
2023-03-24 14:24:42 +00:00
|
|
|
|
rest-message-lines
|
|
|
|
|
suffix-newlines)))
|
2023-03-22 07:13:17 +00:00
|
|
|
|
|
2023-03-24 07:25:00 +00:00
|
|
|
|
(defun khoj--generate-reference (reference)
|
|
|
|
|
"Create `org-mode' footnotes with REFERENCE."
|
|
|
|
|
(setq khoj--reference-count (1+ khoj--reference-count))
|
|
|
|
|
(cons
|
2023-03-24 10:51:39 +00:00
|
|
|
|
(propertize (format "^{ [fn:%x]}" khoj--reference-count) 'help-echo reference)
|
2023-03-24 07:25:00 +00:00
|
|
|
|
(thread-last
|
|
|
|
|
reference
|
|
|
|
|
(replace-regexp-in-string "\n\n" "\n")
|
|
|
|
|
(format "\n[fn:%x] %s" khoj--reference-count))))
|
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)))
|
2023-03-24 14:55:22 +00:00
|
|
|
|
(references (or (cdr (assoc 'context json-response)) '()))
|
|
|
|
|
(footnotes (mapcar #'khoj--generate-reference references))
|
2023-03-24 07:25:00 +00:00
|
|
|
|
(footnote-links (mapcar #'car footnotes))
|
|
|
|
|
(footnote-defs (mapcar #'cdr footnotes)))
|
2023-03-22 07:13:17 +00:00
|
|
|
|
(thread-first
|
2023-03-24 14:24:42 +00:00
|
|
|
|
;; concatenate khoj message and references from API
|
|
|
|
|
(concat
|
|
|
|
|
message
|
|
|
|
|
;; append reference links to khoj message
|
|
|
|
|
(string-join footnote-links "")
|
|
|
|
|
;; append reference sub-section to khoj message and fold it
|
|
|
|
|
(if footnote-defs "\n**** References\n:PROPERTIES:\n:VISIBILITY: folded\n:END:" "")
|
2023-03-24 22:28:13 +00:00
|
|
|
|
;; append reference definitions to references subsection
|
2023-03-24 14:24:42 +00:00
|
|
|
|
(string-join footnote-defs " "))
|
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 22:25:34 +00:00
|
|
|
|
(transient-define-suffix khoj--chat-command (&optional _)
|
2023-03-22 07:13:17 +00:00
|
|
|
|
"Command to Chat with Khoj."
|
|
|
|
|
(interactive (list (transient-args transient-current-command)))
|
|
|
|
|
(khoj--chat))
|
|
|
|
|
|
2023-03-26 18:11:43 +00:00
|
|
|
|
(transient-define-prefix khoj--menu ()
|
2023-01-19 04:04:05 +00:00
|
|
|
|
"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)
|
2023-03-26 03:12:06 +00:00
|
|
|
|
;; Setup khoj server if not running before executing user commands
|
|
|
|
|
(when (and (not (khoj--server-running?))
|
|
|
|
|
(y-or-n-p "Could not connect to Khoj server. Should I install and start it?"))
|
|
|
|
|
(khoj--server-setup))
|
2023-03-26 04:56:04 +00:00
|
|
|
|
(while (not khoj--server-ready?)
|
2023-03-26 22:52:32 +00:00
|
|
|
|
(sit-for 0.5))
|
2023-03-26 18:16:05 +00:00
|
|
|
|
(khoj--server-configure)
|
2023-03-26 18:11:43 +00:00
|
|
|
|
(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
|