cmd/explore.go
@@ -78,8 +78,9 @@ if topN <= 0 && cfg.Explore.TopN > 0 { topN = cfg.Explore.TopN } hardBudget := cfg.Explore.HardBudget // 0 = Explore 内部用缺省 32000 res, err := search.Explore(store, allKeywords, search.ExploreOptions{Budget: budget, TopN: topN}) res, err := search.Explore(store, allKeywords, search.ExploreOptions{Budget: budget, TopN: topN, HardBudget: hardBudget}) if err != nil { return fmt.Errorf("explore 失败: %w", err) }