- Add deepseek and nvidia entries to gateway-provider config - Add DEEPSEEK_API_KEY and NVIDIA_API_KEY to .env.example - Add deepseek and nvidia to doctor's LLM provider check - Fix remaining harness-log → log-message reference
8 lines
243 B
Common Lisp
8 lines
243 B
Common Lisp
(defun memory-inspect ()
|
|
"Allows the system to inspect its own memory state."
|
|
(harness-log "MEMORY: Self-inspection triggered."))
|
|
|
|
(defskill :passepartout-system-memory
|
|
:priority 100
|
|
:trigger (lambda (ctx) (declare (ignore ctx)) nil))
|