Closed HyunggyuJang closed 8 months ago
Hey @HyunggyuJang, thanks for sharing the issue and clarifying that it persists across self-hosted with docker and khoj cloud.
Can you share how you've configured Khoj in your emacs config (init.el
)?
For reference, my khoj setup in emacs init.el
look like below (using straight.el):
(use-package khoj
:after org
:straight (khoj
:type git
:host github
:repo "khoj-ai/khoj"
:files ("src/interface/emacs/khoj.el"))
:bind ("C-c s" . 'khoj)
:config (setq
khoj-server-url "https://app.khoj.dev"
khoj-api-key <my-khoj-api-key>
khoj-index-files '("~/Documents/Notes/Incoming.org" "~/Documents/Notes/Tasks.org")))
Sure, here it is
(use-package khoj
:after org
:config (setq khoj-index-directories (list org-directory)
khoj-index-files nil
khoj-api-key <api-key>))
For the khoj cloud usage, and
(use-package khoj
:after org
:config (setq khoj-index-directories (list org-directory)
khoj-index-files nil
khoj-server-url "http://127.0.0.1:42110"
khoj-api-key <api-key>))
for self host.
Hey @HyunggyuJang, could you check if the issue is resolved for you with the the latest khoj.el
? The indexing error should have been fixed in 392df40f361b76ef343f3653289f4d20085093c0.
Thanks! I will check it.
Hey @HyunggyuJang I'll mark this issue as closed for now. Please feel free to reopen it if you are still hitting this issue
Met this error from (the latest) emacs client. Tried with self-hosted server, setup with docker.
Confirmed that this persists also for khoj cloud server.