the personal boundary reads the day-word frame too (V-553)

The topic seeds let "какой сегодня праздник" and "что интересного
произошло сегодня в мире" past the weather source, and the personal
boundary refused them one source further down: "не знаю — не нашла у
тебя такой записи" about a public holiday.

Same defect, same mechanism, one layer lower. "что у меня сегодня" is a
personal seed and worldSeeds had nothing in that frame. Two seeds fix it.

TestONNXPersonalBoundary 22/22 -> 25/25, nothing regressed.
This commit is contained in:
2026-08-05 21:57:32 +04:00
parent a9db82b04c
commit 35ae1f41da
2 changed files with 12 additions and 0 deletions
+6
View File
@@ -88,6 +88,12 @@ var worldSeeds = []string{
"во сколько сегодня открывается магазин",
"когда сегодня начинается матч",
"во сколько сегодня восход солнца",
// The other frame a day word carries, and the same story: "что у меня
// сегодня" is a personal seed, so "какой сегодня праздник" and "что
// интересного произошло сегодня в мире" were refused as his after the
// topic seeds had already let them past the weather source.
"какой сегодня курс валют",
"что сегодня происходит в мире",
}
// personalBoundary holds the embedded seeds. Zero value is usable and means
+6
View File
@@ -76,6 +76,12 @@ func TestONNXPersonalBoundary(t *testing.T) {
{"во сколько закат сегодня", false},
{"когда сегодня заканчивается концерт", false},
{"во сколько завтра открывается аптека", false},
// The "какой сегодня X" frame. These clear the weather topic after the
// V-553 seeds and were then refused here, which is the same defect one
// source further down the chain.
{"какой сегодня праздник", false},
{"что интересного произошло сегодня в мире", false},
{"кто выиграл вчера матч", false},
}
h := &reactiveHandler{recall: recallWiring{embedder: emb}}