REFAC: Standardize on Cognitive Cycle and update documentation
This commit is contained in:
@@ -2124,42 +2124,42 @@ On package.el, it is a manual install so far
|
||||
(use-package chemtable)
|
||||
#+end_src
|
||||
|
||||
** Org-agent
|
||||
** OpenCortex
|
||||
#+begin_src elisp
|
||||
;; 1. Manually add the path to your load-path
|
||||
(add-to-list 'load-path "~/memex/projects/org-agent/src")
|
||||
(add-to-list 'load-path "~/memex/projects/opencortex/src")
|
||||
|
||||
;; 2. Explicitly load the file
|
||||
(require 'org-agent)
|
||||
(require 'opencortex)
|
||||
|
||||
;; 3. Configure the variables AFTER the package is loaded
|
||||
(setq org-agent-host "10.10.10.201")
|
||||
(setq org-agent-port 9105)
|
||||
(setq opencortex-host "10.10.10.201")
|
||||
(setq opencortex-port 9105)
|
||||
|
||||
(setq org-agent-executable-path nil)
|
||||
(setq opencortex-executable-path nil)
|
||||
;; 4. (Optional) Re-enable use-package features if you prefer
|
||||
(use-package org-agent
|
||||
(use-package opencortex
|
||||
:straight nil
|
||||
:commands (org-agent-connect org-agent-disconnect))
|
||||
(message "org-agent: Actuator manually verified at %s" org-agent-host)
|
||||
:commands (opencortex-connect opencortex-disconnect))
|
||||
(message "opencortex: Actuator manually verified at %s" opencortex-host)
|
||||
|
||||
|
||||
|
||||
;; (use-package org-agent
|
||||
;; (use-package opencortex
|
||||
;; :straight nil
|
||||
;; :load-path "~/memex/projects/org-agent/src" ;; Adjust this to your local clone path
|
||||
;; :commands (org-agent-connect org-agent-disconnect)
|
||||
;; :load-path "~/memex/projects/opencortex/src" ;; Adjust this to your local clone path
|
||||
;; :commands (opencortex-connect opencortex-disconnect)
|
||||
;; :init
|
||||
;; Remote connection settings
|
||||
;; (setq org-agent-host "10.10.10.43") ;; Your Docker server's IP
|
||||
;; (setq org-agent-port 9105) ;; Must match ORG_AGENT_DAEMON_PORT in .env
|
||||
;; (setq opencortex-host "10.10.10.43") ;; Your Docker server's IP
|
||||
;; (setq opencortex-port 9105) ;; Must match ORG_AGENT_DAEMON_PORT in .env
|
||||
|
||||
;; Optimization: Automatically connect when entering Org-mode (optional)
|
||||
;; :hook (org-mode . org-agent-connect)
|
||||
;; :hook (org-mode . opencortex-connect)
|
||||
;; :config
|
||||
;; Ensure Emacs is acting as a proper sensor
|
||||
;; (message "org-agent: Actuator configured for remote brain at %s"
|
||||
;; (org-agent-host))
|
||||
;; (message "opencortex: Actuator configured for remote brain at %s"
|
||||
;; (opencortex-host))
|
||||
;; )
|
||||
#+end_src
|
||||
|
||||
|
||||
Reference in New Issue
Block a user