PSF: Massive Foundation Sync. 57/57 High-Fidelity Blueprints. Zero-Toll Fleet (Llama 3.3/Qwen 3.6) active. GTD updated with browser hardening task.

This commit is contained in:
2026-04-07 10:53:03 -04:00
parent d2e0ff2842
commit 9b00c70683
2 changed files with 14 additions and 27 deletions

View File

@@ -2,19 +2,15 @@
(defun economist-route-task (context)
(declare (ignore context))
'(:openrouter)) ; Exclusively use OpenRouter for the Open Fleet
'(:openrouter))
(defun economist-get-model-for-provider (provider &optional context)
"Returns Open-Source SOTA model IDs. Updated April 2026."
"Returns 100% Free/Subsidized model IDs from OpenRouter. Updated April 2026."
(let ((complexity (ignore-errors (uiop:symbol-call :org-agent.skills.org-skill-router :router-classify-complexity context))))
(case provider
(:openrouter
(case complexity
(:REASONING "qwen/qwen-2.5-72b-instruct") ; Heavy lifting
(:COGNITION "moonshotai/kimi-k2.5") ; Interaction
(t "qwen/qwen-2.5-72b-instruct"))) ; Standard reflex
(:REASONING "meta-llama/llama-3.3-70b-instruct:free") ; High fidelity, zero cost
(:COGNITION "qwen/qwen3.6-plus:free") ; Latest interaction, zero cost
(t "meta-llama/llama-3.2-3b-instruct:free"))) ; Ultra-fast reflex, zero cost
(t nil))))
(defun economist-patch-kernel ()
"Hot-patches the kernel's *provider-cascade* to use economist logic."
(setf org-agent:*provider-cascade* #'economist-route-task))