ax_rd
3 hours ago 62a9f6223745c0df42be1f4226f31dfb10c83ea8
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)
   }