You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current router is a classifier prompt against a small Groq model. Works fine for ~4 agents; won't scale past ~10. Replace with an embedding nearest-neighbor match across agent router_description vectors.
Acceptance criteria:
One-time embedding generation on agent registration.
Per-request embedding of the user prompt + cosine match against agent vectors.
Fallback to the current classifier prompt if the embedding provider isn't configured.
The current router is a classifier prompt against a small Groq model. Works fine for ~4 agents; won't scale past ~10. Replace with an embedding nearest-neighbor match across agent
router_descriptionvectors.Acceptance criteria: