router: agenda questions belong to query, not to system
"что у меня сегодня" and "что у меня в календаре сегодня" both routed IntentSystem on the deployed daemon, and replySystem has no agenda arm, so both answered "пока не умею". The calendar source that can answer them lives in the query chain and was never reached. The fixture has said query since ru-query-019 was written; the daemon disagreed with the fixture and the daemon was wrong. AgendaQueryGrammars routes them at stage 0, after the clock rules so "какой сегодня день" keeps reaching replySystem. Intent only — which source claims the turn stays the query chain's decision. This is what made the follow-up continuation look like it only worked for "what day is it". It did: the query half inherited an intent whose handler could not answer, so both halves came back "пока не умею". Measured on the 77-case RU fixture: full accuracy 70.1% → 72.7%, intent-only 75.3% → 77.9%, calendar 0/2 → 2/2, clarify counts unchanged. The eval harness wires the new grammars too, or the fixture would stop being a measurement of the daemon. Go's \b is ASCII-only and never fires after a Cyrillic letter, which the first version of the pattern learned the hard way. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01TrVSBKe3RFDF4fGYKWYQnX
This commit is contained in:
@@ -317,6 +317,10 @@ func buildRouter(emb router.Embedder, acts router.ActMatcher, threshold float64,
|
||||
seedClassifier(cls)
|
||||
grammars := router.DefaultGrammars(acts)
|
||||
grammars = append(grammars, router.SystemTimeDateGrammars()...)
|
||||
// After the time/date rules on purpose: "какой сегодня день" is a clock
|
||||
// question and must keep reaching replySystem, while "что у меня сегодня"
|
||||
// is an agenda question and must not.
|
||||
grammars = append(grammars, router.AgendaQueryGrammars()...)
|
||||
grammars = append(grammars, router.ReminderGrammar())
|
||||
return router.New(router.Config{
|
||||
Grammars: grammars,
|
||||
|
||||
Reference in New Issue
Block a user