mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-11-23 15:38:55 +01:00
Give the project a short, less generic name. Rename it to Khoj
- Semantic Search was just a placeholder used to test the idea out Didn't want to get into naming at that point of time
This commit is contained in:
parent
989526ae54
commit
732b2d287f
13 changed files with 96 additions and 95 deletions
|
@ -19,11 +19,11 @@ EXPOSE ${PORT}
|
||||||
RUN conda env create -f config/environment.yml
|
RUN conda env create -f config/environment.yml
|
||||||
|
|
||||||
# Use the conda environment we created to run the application.
|
# Use the conda environment we created to run the application.
|
||||||
# To enable the conda env, we cannot simply RUN `conda activate semantic-search`,
|
# To enable the conda env, we cannot simply RUN `conda activate khoj`,
|
||||||
# since each RUN command in a Dockerfile is a separate bash shell.
|
# since each RUN command in a Dockerfile is a separate bash shell.
|
||||||
# The environment would not carry forward.
|
# The environment would not carry forward.
|
||||||
# Instead, we'll use `conda run` to run the application.
|
# Instead, we'll use `conda run` to run the application.
|
||||||
# There are more arguments required for the script to run,
|
# There are more arguments required for the script to run,
|
||||||
# but these should be passed in through the docker-compose.yml file.
|
# but these should be passed in through the docker-compose.yml file.
|
||||||
ENTRYPOINT ["conda", "run", "--no-capture-output", "--name", "semantic-search", \
|
ENTRYPOINT ["conda", "run", "--no-capture-output", "--name", "khoj", \
|
||||||
"python3", "-m", "src.main"]
|
"python3", "-m", "src.main"]
|
||||||
|
|
30
README.org
30
README.org
|
@ -1,9 +1,9 @@
|
||||||
[[https://github.com/debanjum/semantic-search/actions/workflows/test.yml/badge.svg]] [[https://github.com/debanjum/semantic-search/actions/workflows/build.yml/badge.svg]]
|
[[https://github.com/debanjum/khoj/actions/workflows/test.yml/badge.svg]] [[https://github.com/debanjum/khoj/actions/workflows/build.yml/badge.svg]]
|
||||||
|
|
||||||
* Semantic Search
|
* Khoj
|
||||||
/Allow natural language search on user content like notes, images, transactions using transformer ML models/
|
/Allow natural language search on user content like notes, images, transactions using transformer ML models/
|
||||||
|
|
||||||
User can interface with semantic-search via the API or [[./src/interface/emacs/semantic-search.el][Emacs]]. All search is done locally[[https://github.com/debanjum/semantic-search#miscellaneous][*]]
|
User can interface with Khoj via the API or [[./src/interface/emacs/khoj.el][Emacs]]. All search is done locally[[https://github.com/debanjum/khoj#miscellaneous][*]]
|
||||||
|
|
||||||
** Demo
|
** Demo
|
||||||
https://user-images.githubusercontent.com/6413477/168417719-8a8bc4e5-8404-42b2-89a7-4493e3d2582c.mp4
|
https://user-images.githubusercontent.com/6413477/168417719-8a8bc4e5-8404-42b2-89a7-4493e3d2582c.mp4
|
||||||
|
@ -12,7 +12,7 @@
|
||||||
|
|
||||||
*** 1. Clone
|
*** 1. Clone
|
||||||
#+begin_src shell
|
#+begin_src shell
|
||||||
git clone https://github.com/debanjum/semantic-search && cd semantic-search
|
git clone https://github.com/debanjum/khoj && cd khoj
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
*** 2. Configure
|
*** 2. Configure
|
||||||
|
@ -27,15 +27,15 @@
|
||||||
/Note: The first run will take time. Let it run, it's mostly not hung, just generating embeddings/
|
/Note: The first run will take time. Let it run, it's mostly not hung, just generating embeddings/
|
||||||
|
|
||||||
** Use
|
** Use
|
||||||
- *Semantic Search via API*
|
- *Khoj via API*
|
||||||
- See [[http://localhost:8000/docs][Semantic Search API Docs]]
|
- See [[http://localhost:8000/docs][Khoj API Docs]]
|
||||||
- [[http://localhost:8000/search?q=%22what%20is%20the%20meaning%20of%20life%22][Query]]
|
- [[http://localhost:8000/search?q=%22what%20is%20the%20meaning%20of%20life%22][Query]]
|
||||||
- [[http://localhost:8000/regenerate?t=ledger][Regenerate Embeddings]]
|
- [[http://localhost:8000/regenerate?t=ledger][Regenerate Embeddings]]
|
||||||
- [[https://localhost:8000/ui][Configure Application]]
|
- [[https://localhost:8000/ui][Configure Application]]
|
||||||
|
|
||||||
- *Semantic Search via Emacs*
|
- *Khoj via Emacs*
|
||||||
- [[https://github.com/debanjum/semantic-search/tree/master/src/interface/emacs#installation][Install]] [[./src/interface/emacs/semantic-search.el][semantic-search.el]]
|
- [[https://github.com/debanjum/khoj/tree/master/src/interface/emacs#installation][Install]] [[./src/interface/emacs/khoj.el][khoj.el]]
|
||||||
- Run ~M-x semantic-search <user-query>~
|
- Run ~M-x khoj <user-query>~
|
||||||
|
|
||||||
** Run Unit tests
|
** Run Unit tests
|
||||||
|
|
||||||
|
@ -71,11 +71,11 @@
|
||||||
sudo apt-get -y install libimage-exiftool-perl
|
sudo apt-get -y install libimage-exiftool-perl
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
**** 2. Install Semantic Search
|
**** 2. Install Khoj
|
||||||
#+begin_src shell
|
#+begin_src shell
|
||||||
git clone https://github.com/debanjum/semantic-search && cd semantic-search
|
git clone https://github.com/debanjum/khoj && cd khoj
|
||||||
conda env create -f config/environment.yml
|
conda env create -f config/environment.yml
|
||||||
conda activate semantic-search
|
conda activate khoj
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
**** 3. Configure
|
**** 3. Configure
|
||||||
|
@ -92,11 +92,11 @@
|
||||||
|
|
||||||
*** Upgrade On Local Machine
|
*** Upgrade On Local Machine
|
||||||
#+begin_src shell
|
#+begin_src shell
|
||||||
cd semantic-search
|
cd khoj
|
||||||
git pull origin master
|
git pull origin master
|
||||||
conda deactivate semantic-search
|
conda deactivate khoj
|
||||||
conda env update -f config/environment.yml
|
conda env update -f config/environment.yml
|
||||||
conda activate semantic-search
|
conda activate khoj
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
** Acknowledgments
|
** Acknowledgments
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
name: semantic-search
|
name: khoj
|
||||||
channels:
|
channels:
|
||||||
- conda-forge
|
- conda-forge
|
||||||
dependencies:
|
dependencies:
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
name: semantic-search
|
name: khoj
|
||||||
channels:
|
channels:
|
||||||
- conda-forge
|
- conda-forge
|
||||||
dependencies:
|
dependencies:
|
||||||
|
@ -113,4 +113,4 @@ dependencies:
|
||||||
- zipp=3.5.0=pyhd8ed1ab_0
|
- zipp=3.5.0=pyhd8ed1ab_0
|
||||||
- zlib=1.2.11=h31e879b_1009
|
- zlib=1.2.11=h31e879b_1009
|
||||||
- zstd=1.5.0=h861e0a7_0
|
- zstd=1.5.0=h861e0a7_0
|
||||||
prefix: /opt/homebrew/Caskroom/miniforge/base/envs/semantic-search
|
prefix: /opt/homebrew/Caskroom/miniforge/base/envs/khoj
|
||||||
|
|
|
@ -1,33 +1,33 @@
|
||||||
* Emacs Semantic Search
|
* Emacs Khoj
|
||||||
/An Emacs interface for [[https://github.com/debanjum/semantic-search][semantic-search]]/
|
/An Emacs interface for [[https://github.com/debanjum/khoj][Khoj]]/
|
||||||
|
|
||||||
** Requirements
|
** Requirements
|
||||||
- Install and Run [[https://github.com/debanjum/semantic-search][semantic-search]]
|
- Install and Run [[https://github.com/debanjum/khoj][Khoj]]
|
||||||
|
|
||||||
** Installation
|
** Installation
|
||||||
- Direct Install
|
- Direct Install
|
||||||
- Put ~semantic-search.el~ in your Emacs load path. For e.g ~/.emacs.d/lisp
|
- Put ~khoj.el~ in your Emacs load path. For e.g ~/.emacs.d/lisp
|
||||||
|
|
||||||
- Load via ~use-package~ in your ~/.emacs.d/init.el or .emacs file by adding below snippet
|
- Load via ~use-package~ in your ~/.emacs.d/init.el or .emacs file by adding below snippet
|
||||||
#+begin_src elisp
|
#+begin_src elisp
|
||||||
;; Org-Semantic Search Library
|
;; Khoj Package
|
||||||
(use-package semantic-search
|
(use-package khoj
|
||||||
:load-path "~/.emacs.d/lisp/semantic-search.el"
|
:load-path "~/.emacs.d/lisp/khoj.el"
|
||||||
:bind ("C-c s" . 'semantic-search))
|
:bind ("C-c s" . 'khoj))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
- Use [[https://github.com/quelpa/quelpa#installation][Quelpa]]
|
- Use [[https://github.com/quelpa/quelpa#installation][Quelpa]]
|
||||||
- Ensure [[https://github.com/quelpa/quelpa#installation][Quelpa]], [[https://github.com/quelpa/quelpa-use-package#installation][quelpa-use-package]] are installed
|
- Ensure [[https://github.com/quelpa/quelpa#installation][Quelpa]], [[https://github.com/quelpa/quelpa-use-package#installation][quelpa-use-package]] are installed
|
||||||
- Add below snippet to your ~/.emacs.d/init.el or .emacs config file and execute it.
|
- Add below snippet to your ~/.emacs.d/init.el or .emacs config file and execute it.
|
||||||
#+begin_src elisp
|
#+begin_src elisp
|
||||||
;; Org-Semantic Search Library
|
;; Khoj Package
|
||||||
(use-package semantic-search
|
(use-package khoj
|
||||||
:quelpa (semantic-search :fetcher url :url "https://raw.githubusercontent.com/debanjum/semantic-search/master/interface/emacs/semantic-search.el")
|
:quelpa (khoj :fetcher url :url "https://raw.githubusercontent.com/debanjum/khoj/master/interface/emacs/khoj.el")
|
||||||
:bind ("C-c s" . 'semantic-search))
|
:bind ("C-c s" . 'khoj))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
** Usage
|
** Usage
|
||||||
1. Call ~semantic-search~ using keybinding ~C-c s~ or ~M-x semantic-search~
|
1. Call ~khoj~ using keybinding ~C-c s~ or ~M-x khoj~
|
||||||
|
|
||||||
2. Enter Query in Natural Language
|
2. Enter Query in Natural Language
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
;;; semantic-search.el --- Semantic search via Emacs
|
;;; khoj.el --- Natural Search via Emacs
|
||||||
|
|
||||||
;; Copyright (C) 2021-2022 Debanjum Singh Solanky
|
;; Copyright (C) 2021-2022 Debanjum Singh Solanky
|
||||||
|
|
||||||
;; Author: Debanjum Singh Solanky <debanjum@gmail.com>
|
;; Author: Debanjum Singh Solanky <debanjum@gmail.com>
|
||||||
;; Version: 0.1
|
;; Version: 0.1
|
||||||
;; Keywords: search, org-mode, outlines
|
;; Keywords: search, org-mode, outlines
|
||||||
;; URL: http://github.com/debanjum/semantic-search/interface/emacs
|
;; URL: http://github.com/debanjum/khoj/interface/emacs
|
||||||
|
|
||||||
;; This file is NOT part of GNU Emacs.
|
;; This file is NOT part of GNU Emacs.
|
||||||
|
|
||||||
|
@ -26,26 +26,27 @@
|
||||||
|
|
||||||
;;; Commentary:
|
;;; Commentary:
|
||||||
|
|
||||||
;; This package provides semantic search on org-mode files
|
;; This package provides natural language search on org-mode notes,
|
||||||
;; It is a wrapper that interfaces with transformer based ML model
|
;; beancount transactions and images.
|
||||||
;; The models semantic search capabilities are exposed via an HTTP API
|
;; It is a wrapper that interfaces with transformer based ML models.
|
||||||
|
;; The models search capabilities are exposed via the Khoj HTTP API
|
||||||
|
|
||||||
;;; Code:
|
;;; Code:
|
||||||
|
|
||||||
(require 'url)
|
(require 'url)
|
||||||
(require 'json)
|
(require 'json)
|
||||||
|
|
||||||
(defcustom semantic-search--server-url "http://localhost:8000"
|
(defcustom khoj--server-url "http://localhost:8000"
|
||||||
"Location of semantic search API server."
|
"Location of Khoj API server."
|
||||||
:group 'semantic-search
|
:group 'khoj
|
||||||
:type 'string)
|
:type 'string)
|
||||||
|
|
||||||
(defcustom semantic-search--image-width 156
|
(defcustom khoj--image-width 156
|
||||||
"Width of rendered images returned by semantic search"
|
"Width of rendered images returned by Khoj"
|
||||||
:group 'semantic-search
|
:group 'khoj
|
||||||
:type 'integer)
|
:type 'integer)
|
||||||
|
|
||||||
(defun semantic-search--extract-entries-as-org (json-response query)
|
(defun khoj--extract-entries-as-org (json-response query)
|
||||||
"Convert json response from API to org-mode entries"
|
"Convert json response from API to org-mode entries"
|
||||||
;; remove leading (, ) or SPC from extracted entries string
|
;; remove leading (, ) or SPC from extracted entries string
|
||||||
(replace-regexp-in-string
|
(replace-regexp-in-string
|
||||||
|
@ -57,7 +58,7 @@
|
||||||
(lambda (args) (format "%s" (cdr (assoc 'Entry args))))
|
(lambda (args) (format "%s" (cdr (assoc 'Entry args))))
|
||||||
json-response))))
|
json-response))))
|
||||||
|
|
||||||
(defun semantic-search--extract-entries-as-images (json-response query)
|
(defun khoj--extract-entries-as-images (json-response query)
|
||||||
"Convert json response from API to org-mode entries with images"
|
"Convert json response from API to org-mode entries with images"
|
||||||
;; remove leading (, ) or SPC from extracted entries string
|
;; remove leading (, ) or SPC from extracted entries string
|
||||||
(replace-regexp-in-string
|
(replace-regexp-in-string
|
||||||
|
@ -74,14 +75,14 @@
|
||||||
(cdr (assoc 'score args))
|
(cdr (assoc 'score args))
|
||||||
(cdr (assoc 'metadata_score args))
|
(cdr (assoc 'metadata_score args))
|
||||||
(cdr (assoc 'image_score args))
|
(cdr (assoc 'image_score args))
|
||||||
semantic-search--server-url
|
khoj--server-url
|
||||||
(cdr (assoc 'entry args))
|
(cdr (assoc 'entry args))
|
||||||
semantic-search--server-url
|
khoj--server-url
|
||||||
(cdr (assoc 'entry args))
|
(cdr (assoc 'entry args))
|
||||||
(random 10000)))
|
(random 10000)))
|
||||||
json-response)))))
|
json-response)))))
|
||||||
|
|
||||||
(defun semantic-search--extract-entries-as-ledger (json-response query)
|
(defun khoj--extract-entries-as-ledger (json-response query)
|
||||||
"Convert json response from API to ledger entries"
|
"Convert json response from API to ledger entries"
|
||||||
;; remove leading (, ) or SPC from extracted entries string
|
;; remove leading (, ) or SPC from extracted entries string
|
||||||
(replace-regexp-in-string
|
(replace-regexp-in-string
|
||||||
|
@ -96,7 +97,7 @@
|
||||||
(format "%s\n\n" (cdr (assoc 'Entry args))))
|
(format "%s\n\n" (cdr (assoc 'Entry args))))
|
||||||
json-response)))))
|
json-response)))))
|
||||||
|
|
||||||
(defun semantic-search--buffer-name-to-search-type (buffer-name)
|
(defun khoj--buffer-name-to-search-type (buffer-name)
|
||||||
(let ((file-extension (file-name-extension buffer-name)))
|
(let ((file-extension (file-name-extension buffer-name)))
|
||||||
(cond
|
(cond
|
||||||
((equal buffer-name "Music.org") "music")
|
((equal buffer-name "Music.org") "music")
|
||||||
|
@ -104,18 +105,18 @@
|
||||||
((equal file-extension "org") "notes")
|
((equal file-extension "org") "notes")
|
||||||
(t "notes"))))
|
(t "notes"))))
|
||||||
|
|
||||||
(defun semantic-search--construct-api-query (query search-type)
|
(defun khoj--construct-api-query (query search-type)
|
||||||
(let ((encoded-query (url-hexify-string query)))
|
(let ((encoded-query (url-hexify-string query)))
|
||||||
(format "%s/search?q=%s&t=%s" semantic-search--server-url encoded-query search-type)))
|
(format "%s/search?q=%s&t=%s" khoj--server-url encoded-query search-type)))
|
||||||
|
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
(defun semantic-search (query)
|
(defun khoj (query)
|
||||||
"Semantic search on org-mode content via semantic-search API"
|
"Khoj on org-mode content via khoj API"
|
||||||
(interactive "sQuery: ")
|
(interactive "sQuery: ")
|
||||||
(let* ((default-type (semantic-search--buffer-name-to-search-type (buffer-name)))
|
(let* ((default-type (khoj--buffer-name-to-search-type (buffer-name)))
|
||||||
(search-type (completing-read "Type: " '("notes" "ledger" "music" "image") nil t default-type))
|
(search-type (completing-read "Type: " '("notes" "ledger" "music" "image") nil t default-type))
|
||||||
(url (semantic-search--construct-api-query query search-type))
|
(url (khoj--construct-api-query query search-type))
|
||||||
(buff (get-buffer-create (format "*Semantic Search (q:%s t:%s)*" query search-type))))
|
(buff (get-buffer-create (format "*Khoj (q:%s t:%s)*" query search-type))))
|
||||||
;; get json response from api
|
;; get json response from api
|
||||||
(with-current-buffer buff
|
(with-current-buffer buff
|
||||||
(let ((inhibit-read-only t))
|
(let ((inhibit-read-only t))
|
||||||
|
@ -127,9 +128,9 @@
|
||||||
(json-response (json-parse-buffer :object-type 'alist)))
|
(json-response (json-parse-buffer :object-type 'alist)))
|
||||||
(erase-buffer)
|
(erase-buffer)
|
||||||
(insert
|
(insert
|
||||||
(cond ((or (equal search-type "notes") (equal search-type "music")) (semantic-search--extract-entries-as-org json-response query))
|
(cond ((or (equal search-type "notes") (equal search-type "music")) (khoj--extract-entries-as-org json-response query))
|
||||||
((equal search-type "ledger") (semantic-search--extract-entries-as-ledger json-response query))
|
((equal search-type "ledger") (khoj--extract-entries-as-ledger json-response query))
|
||||||
((equal search-type "image") (semantic-search--extract-entries-as-images json-response query))
|
((equal search-type "image") (khoj--extract-entries-as-images json-response query))
|
||||||
(t (format "%s" json-response))))
|
(t (format "%s" json-response))))
|
||||||
(cond ((equal search-type "notes") (org-mode))
|
(cond ((equal search-type "notes") (org-mode))
|
||||||
((equal search-type "ledger") (beancount-mode))
|
((equal search-type "ledger") (beancount-mode))
|
||||||
|
@ -141,6 +142,6 @@
|
||||||
(read-only-mode t))
|
(read-only-mode t))
|
||||||
(switch-to-buffer buff)))
|
(switch-to-buffer buff)))
|
||||||
|
|
||||||
(provide 'semantic-search)
|
(provide 'khoj)
|
||||||
|
|
||||||
;;; semantic-search.el ends here
|
;;; khoj.el ends here
|
|
@ -1,7 +1,7 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>Semantic Search</title>
|
<title>Khoj</title>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
@ -52,7 +52,7 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<h1>Semantic Search</h1>
|
<h1>Khoj</h1>
|
||||||
|
|
||||||
<!--Add Text Box To Enter Query -->
|
<!--Add Text Box To Enter Query -->
|
||||||
<input id="query" type="text" placeholder="Search" onkeydown=search_on_enter(event) autofocus>
|
<input id="query" type="text" placeholder="Search" onkeydown=search_on_enter(event) autofocus>
|
||||||
|
|
|
@ -15,7 +15,7 @@ def cli(args=None):
|
||||||
return None
|
return None
|
||||||
|
|
||||||
# Setup Argument Parser for the Commandline Interface
|
# Setup Argument Parser for the Commandline Interface
|
||||||
parser = argparse.ArgumentParser(description="Expose API for Semantic Search")
|
parser = argparse.ArgumentParser(description="Expose API for Khoj")
|
||||||
parser.add_argument('--org-files', '-i', nargs='*', help="List of org-mode files to process")
|
parser.add_argument('--org-files', '-i', nargs='*', help="List of org-mode files to process")
|
||||||
parser.add_argument('--org-filter', type=str, default=None, help="Regex filter for org-mode files to process")
|
parser.add_argument('--org-filter', type=str, default=None, help="Regex filter for org-mode files to process")
|
||||||
parser.add_argument('--config-file', '-c', type=pathlib.Path, help="YAML file with user configuration")
|
parser.add_argument('--config-file', '-c', type=pathlib.Path, help="YAML file with user configuration")
|
||||||
|
|
|
@ -22,7 +22,7 @@ def create_script(filepath, content):
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
# Setup Argument Parser
|
# Setup Argument Parser
|
||||||
parser = argparse.ArgumentParser(description="Setup the semantic search program")
|
parser = argparse.ArgumentParser(description="Setup the Khoj program")
|
||||||
parser.add_argument('--script-dir', '-s', default="./", type=pathlib.Path, help="The project directory. Default: Current Directory")
|
parser.add_argument('--script-dir', '-s', default="./", type=pathlib.Path, help="The project directory. Default: Current Directory")
|
||||||
parser.add_argument('--install-dir', '-i', default="./", type=pathlib.Path, help="The directory to install the script. Default: Current Directory")
|
parser.add_argument('--install-dir', '-i', default="./", type=pathlib.Path, help="The directory to install the script. Default: Current Directory")
|
||||||
parser.add_argument('--model-dir', '-m', default="./", type=pathlib.Path, help="The directory to store the model in. Default: Current Directory")
|
parser.add_argument('--model-dir', '-m', default="./", type=pathlib.Path, help="The directory to store the model in. Default: Current Directory")
|
||||||
|
@ -32,7 +32,7 @@ if __name__ == '__main__':
|
||||||
|
|
||||||
# Arrange
|
# Arrange
|
||||||
eval "$(conda shell.bash hook)"
|
eval "$(conda shell.bash hook)"
|
||||||
conda activate semantic-search
|
conda activate khoj
|
||||||
cd {get_absolute(args.script_dir)}
|
cd {get_absolute(args.script_dir)}
|
||||||
|
|
||||||
# Act
|
# Act
|
||||||
|
@ -43,7 +43,7 @@ python3 search_types/asymmetric.py -j {get_absolute(args.model_dir)}/notes.jsonl
|
||||||
|
|
||||||
# Arrange
|
# Arrange
|
||||||
eval "$(conda shell.bash hook)"
|
eval "$(conda shell.bash hook)"
|
||||||
conda activate semantic-search
|
conda activate khoj
|
||||||
cd {get_absolute(args.script_dir)}
|
cd {get_absolute(args.script_dir)}
|
||||||
|
|
||||||
# Act
|
# Act
|
||||||
|
@ -54,4 +54,4 @@ python3 main.py -j {get_absolute(args.model_dir)}/notes.jsonl.gz -e {get_absolut
|
||||||
create_script(f"{args.install_path}run_server"), run_server_content)
|
create_script(f"{args.install_path}run_server"), run_server_content)
|
||||||
|
|
||||||
# Create single command for interactive queries over commandline
|
# Create single command for interactive queries over commandline
|
||||||
create_script(f"{args.install_path}semantic-search"), search_cmd_content)
|
create_script(f"{args.install_path}khoj"), search_cmd_content)
|
||||||
|
|
|
@ -1,33 +1,33 @@
|
||||||
* Emacs Semantic Search
|
* Emacs Khoj
|
||||||
/An Emacs interface for [[https://github.com/debanjum/semantic-search][semantic-search]]/
|
/An Emacs interface for [[https://github.com/debanjum/khoj][khoj]]/
|
||||||
|
|
||||||
** Requirements
|
** Requirements
|
||||||
- Install and Run [[https://github.com/debanjum/semantic-search][semantic-search]]
|
- Install and Run [[https://github.com/debanjum/khoj][khoj]]
|
||||||
|
|
||||||
** Installation
|
** Installation
|
||||||
- Direct Install
|
- Direct Install
|
||||||
- Put ~semantic-search.el~ in your Emacs load path. For e.g ~/.emacs.d/lisp
|
- Put ~khoj.el~ in your Emacs load path. For e.g ~/.emacs.d/lisp
|
||||||
|
|
||||||
- Load via ~use-package~ in your ~/.emacs.d/init.el or .emacs file by adding below snippet
|
- Load via ~use-package~ in your ~/.emacs.d/init.el or .emacs file by adding below snippet
|
||||||
#+begin_src elisp
|
#+begin_src elisp
|
||||||
;; Org-Semantic Search Library
|
;; Khoj Package
|
||||||
(use-package semantic-search
|
(use-package khoj
|
||||||
:load-path "~/.emacs.d/lisp/semantic-search.el"
|
:load-path "~/.emacs.d/lisp/khoj.el"
|
||||||
:bind ("C-c s" . 'semantic-search))
|
:bind ("C-c s" . 'khoj))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
- Use [[https://github.com/quelpa/quelpa#installation][Quelpa]]
|
- Use [[https://github.com/quelpa/quelpa#installation][Quelpa]]
|
||||||
- Ensure [[https://github.com/quelpa/quelpa#installation][Quelpa]], [[https://github.com/quelpa/quelpa-use-package#installation][quelpa-use-package]] are installed
|
- Ensure [[https://github.com/quelpa/quelpa#installation][Quelpa]], [[https://github.com/quelpa/quelpa-use-package#installation][quelpa-use-package]] are installed
|
||||||
- Add below snippet to your ~/.emacs.d/init.el or .emacs config file and execute it.
|
- Add below snippet to your ~/.emacs.d/init.el or .emacs config file and execute it.
|
||||||
#+begin_src elisp
|
#+begin_src elisp
|
||||||
;; Org-Semantic Search Library
|
;; Khoj Package
|
||||||
(use-package semantic-search
|
(use-package khoj
|
||||||
:quelpa (semantic-search :fetcher url :url "https://raw.githubusercontent.com/debanjum/semantic-search/master/interface/emacs/semantic-search.el")
|
:quelpa (khoj :fetcher url :url "https://raw.githubusercontent.com/debanjum/khoj/master/interface/emacs/khoj.el")
|
||||||
:bind ("C-c s" . 'semantic-search))
|
:bind ("C-c s" . 'khoj))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
** Usage
|
** Usage
|
||||||
1. Call ~semantic-search~ using keybinding ~C-c s~ or ~M-x semantic-search~
|
1. Call ~khoj~ using keybinding ~C-c s~ or ~M-x khoj~
|
||||||
|
|
||||||
2. Enter Query in Natural Language
|
2. Enter Query in Natural Language
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
* Semantic Search
|
* Khoj
|
||||||
/Allow natural language search on user content like notes, images using transformer based models/
|
/Allow natural language search on user content like notes, images using transformer based models/
|
||||||
|
|
||||||
All data is processed locally. User can interface with semantic-search app via [[./interface/emacs/semantic-search.el][Emacs]], API or Commandline
|
All data is processed locally. User can interface with khoj app via [[./interface/emacs/khoj.el][Emacs]], API or Commandline
|
||||||
|
|
||||||
** Dependencies
|
** Dependencies
|
||||||
- Python3
|
- Python3
|
||||||
|
@ -9,9 +9,9 @@
|
||||||
|
|
||||||
** Install
|
** Install
|
||||||
#+begin_src shell
|
#+begin_src shell
|
||||||
git clone https://github.com/debanjum/semantic-search && cd semantic-search
|
git clone https://github.com/debanjum/khoj && cd khoj
|
||||||
conda env create -f environment.yml
|
conda env create -f environment.yml
|
||||||
conda activate semantic-search
|
conda activate khoj
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
** Run
|
** Run
|
||||||
|
@ -22,16 +22,16 @@
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
** Use
|
** Use
|
||||||
- *Semantic Search via Emacs*
|
- *Khoj via Emacs*
|
||||||
- [[https://github.com/debanjum/semantic-search/tree/master/interface/emacs#installation][Install]] [[./interface/emacs/semantic-search.el][semantic-search.el]]
|
- [[https://github.com/debanjum/khoj/tree/master/interface/emacs#installation][Install]] [[./interface/emacs/khoj.el][khoj.el]]
|
||||||
- Run ~M-x semantic-search <user-query>~ or Call ~C-c C-s~
|
- Run ~M-x khoj <user-query>~ or Call ~C-c C-s~
|
||||||
|
|
||||||
- *Semantic Search via API*
|
- *Khoj via API*
|
||||||
- Query: ~GET~ [[http://localhost:8000/search?q=%22what%20is%20the%20meaning%20of%20life%22][http://localhost:8000/search?q="What is the meaning of life"]]
|
- Query: ~GET~ [[http://localhost:8000/search?q=%22what%20is%20the%20meaning%20of%20life%22][http://localhost:8000/search?q="What is the meaning of life"]]
|
||||||
- Regenerate Embeddings: ~GET~ [[http://localhost:8000/regenerate][http://localhost:8000/regenerate]]
|
- Regenerate Embeddings: ~GET~ [[http://localhost:8000/regenerate][http://localhost:8000/regenerate]]
|
||||||
- [[http://localhost:8000/docs][Semantic Search API Docs]]
|
- [[http://localhost:8000/docs][Khoj API Docs]]
|
||||||
|
|
||||||
- *Call Semantic Search via Python Script Directly*
|
- *Call Khoj via Python Script Directly*
|
||||||
#+begin_src shell
|
#+begin_src shell
|
||||||
python3 search_types/asymmetric.py \
|
python3 search_types/asymmetric.py \
|
||||||
--compressed-jsonl .notes.jsonl.gz \
|
--compressed-jsonl .notes.jsonl.gz \
|
||||||
|
|
|
@ -36,7 +36,7 @@ def test_asymmetric_search(content_config: ContentConfig, search_config: SearchC
|
||||||
count=1)
|
count=1)
|
||||||
|
|
||||||
# Assert
|
# Assert
|
||||||
# Actual_data should contain "Semantic Search via Emacs" entry
|
# Actual_data should contain "Khoj via Emacs" entry
|
||||||
search_result = results[0]["Entry"]
|
search_result = results[0]["Entry"]
|
||||||
assert "git clone" in search_result
|
assert "git clone" in search_result
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ client = TestClient(app)
|
||||||
# ----------------------------------------------------------------------------------------------------
|
# ----------------------------------------------------------------------------------------------------
|
||||||
def test_search_with_invalid_content_type():
|
def test_search_with_invalid_content_type():
|
||||||
# Arrange
|
# Arrange
|
||||||
user_query = "How to call semantic search from Emacs?"
|
user_query = "How to call Khoj from Emacs?"
|
||||||
|
|
||||||
# Act
|
# Act
|
||||||
response = client.get(f"/search?q={user_query}&t=invalid_content_type")
|
response = client.get(f"/search?q={user_query}&t=invalid_content_type")
|
||||||
|
@ -122,7 +122,7 @@ def test_notes_search(content_config: ContentConfig, search_config: SearchConfig
|
||||||
|
|
||||||
# Assert
|
# Assert
|
||||||
assert response.status_code == 200
|
assert response.status_code == 200
|
||||||
# assert actual_data contains "Semantic Search via Emacs" entry
|
# assert actual_data contains "Khoj via Emacs" entry
|
||||||
search_result = response.json()[0]["Entry"]
|
search_result = response.json()[0]["Entry"]
|
||||||
assert "git clone" in search_result
|
assert "git clone" in search_result
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue