feat(agent): add learn action flow and grounding guards

This commit is contained in:
Dom
2026-06-02 16:24:10 +02:00
parent 86b3c8f7e7
commit d38f0b0f2f
39 changed files with 5901 additions and 212 deletions

View File

@@ -0,0 +1,29 @@
"""Agent-chat handlers package.
Contient les orchestrateurs spécialisés (apprentissage Léa, etc.) appelés
par `agent_chat.app` quand le routage normal d'intent ne suffit pas.
"""
from .learn_action import (
LearnActionOrchestrator,
LearnState,
LearnIntent,
LearnIntentParser,
OptionCFormatter,
StreamingClient,
StateStore,
PersistPayloadBuilder,
get_learn_action_orchestrator,
)
__all__ = [
"LearnActionOrchestrator",
"LearnState",
"LearnIntent",
"LearnIntentParser",
"OptionCFormatter",
"StreamingClient",
"StateStore",
"PersistPayloadBuilder",
"get_learn_action_orchestrator",
]