Kaynağa Gözat

fix: search-and-match模式启用trace

修复:
- 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>
yangxiaohui 2 hafta önce
ebeveyn
işleme
95fab82484
1 değiştirilmiş dosya ile 2 ekleme ve 2 silme
  1. 2 2
      run_inspiration_analysis.py

+ 2 - 2
run_inspiration_analysis.py

@@ -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,