修复: - search-and-match 模式现在会创建 trace - 保留 search-only 模式无 trace(轻量级执行) - 输出 trace URL 便于追踪执行过程 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
@@ -646,8 +646,8 @@ async def main():
print(f"处理第 {i}/{len(inspirations_to_process)} 个灵感: {inspiration}")
print(f"{'#' * 80}")
- # search_only 和 search_and_match 模式不创建 trace
- if search_only or search_and_match:
+ # search_only 模式不创建 trace,search_and_match 需要 trace
+ if search_only:
result = await run_full_analysis(
persona_dir=persona_dir,
inspiration=inspiration,