Merge the personal boundary day-word seeds (#197)

This commit is contained in:
2026-08-05 21:57:32 +04:00
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}}