- Rename gateway-provider → system-model-provider (generic :local provider, no hardcoded ollama) - Rename gateway-llm → system-model (model-request dispatcher) - Rename system-embedding-gateway → system-model-embedding - Rename gateway-manager → gateway-messaging (public api renamed to messaging-*) - Add system-model-explorer (model discovery via OpenRouter API, cached, per-slot recommendations) - Fix skill loader export: replace prefix-matching with fbound/boundp-based export (20 skills now export) - Add model-router to skill-loader exclusion list (loaded via CLI) - De-ollama: remove hardcoded assumed-available patterns from provider pipeline - Default cascade: cloud-only (openrouter, openai, groq, gemini, deepseek, nvidia, anthropic) - Env example: add LOCAL_BASE_URL, fix cascade order - All org files updated with architectural prose (literate programming)
39 lines
1.6 KiB
Common Lisp
39 lines
1.6 KiB
Common Lisp
(defsystem :passepartout
|
|
:name "Passepartout"
|
|
:author "Amr Gharbeia"
|
|
:version "0.3.0"
|
|
:license "AGPLv3"
|
|
:description "The Probabilistic-Deterministic Lisp Machine"
|
|
:depends-on (:usocket :bordeaux-threads :dexador :uiop :cl-dotenv :cl-ppcre :hunchentoot :ironclad :str :cl-json :uuid)
|
|
:serial t
|
|
:components ((:file "lisp/core-defpackage")
|
|
(:file "lisp/core-skills")
|
|
(:file "lisp/core-communication")
|
|
(:file "lisp/core-memory")
|
|
(:file "lisp/core-context")
|
|
(:file "lisp/security-dispatcher")
|
|
(:file "lisp/core-loop-perceive")
|
|
(:file "lisp/core-loop-reason")
|
|
(:file "lisp/core-loop-act")
|
|
(:file "lisp/core-loop")))
|
|
|
|
(defsystem :passepartout/tests
|
|
:depends-on (:passepartout :fiveam)
|
|
:components ((:file "tests/pipeline-act-tests")
|
|
(:file "tests/boot-sequence-tests")
|
|
(:file "tests/communication-tests")
|
|
(:file "tests/immune-system-tests")
|
|
(:file "tests/memory-tests")
|
|
(:file "tests/pipeline-perceive-tests")
|
|
(:file "tests/pipeline-reason-tests")
|
|
(:file "tests/peripheral-vision-tests")
|
|
(:file "tests/tui-tests")
|
|
(:file "tests/utils-org-tests")
|
|
(:file "tests/utils-lisp-tests")
|
|
(:file "tests/llm-gateway-tests")
|
|
(:file "tests/model-explorer-tests")))
|
|
|
|
(defsystem :passepartout/tui
|
|
:depends-on (:passepartout :croatoan :usocket :bordeaux-threads)
|
|
:components ((:file "lisp/gateway-tui")))
|