analyze_creation_pattern_v4.py 47 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343
  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. """
  4. 创作模式分析 V4(完整流程)
  5. 整合三步流程:
  6. 1. 数据准备:根据帖子图谱 + 人设图谱,提取待分析数据
  7. 2. 起点分析:AI分析创意起点(新版prompt)
  8. 3. 模式推导:基于共现关系的迭代推导
  9. 输入:帖子图谱 + 人设图谱
  10. 输出:完整的创作模式分析结果
  11. """
  12. import asyncio
  13. import json
  14. from pathlib import Path
  15. from typing import Dict, List, Optional, Set
  16. import sys
  17. # 添加项目根目录到路径
  18. project_root = Path(__file__).parent.parent.parent
  19. sys.path.insert(0, str(project_root))
  20. from lib.llm_cached import analyze, LLMConfig, AnalyzeResult
  21. from lib.my_trace import set_trace_smith as set_trace
  22. from script.data_processing.path_config import PathConfig
  23. # ===== 配置 =====
  24. TASK_NAME = "creation_pattern_v4" # 缓存任务名称
  25. OUTPUT_DIR_NAME = "creation_pattern_v4" # 输出目录名称
  26. MATCH_SCORE_THRESHOLD = 0.8 # 匹配分数阈值
  27. GLOBAL_RATIO_THRESHOLD = 0.7 # 全局占比阈值(>=0.7 算常量)
  28. ORIGIN_SCORE_THRESHOLD = 0.8 # 起点分数阈值
  29. # ===== 数据加载 =====
  30. def load_json(file_path: Path) -> Dict:
  31. """加载JSON文件"""
  32. with open(file_path, "r", encoding="utf-8") as f:
  33. return json.load(f)
  34. def get_post_graph_files(config: PathConfig) -> List[Path]:
  35. """获取所有帖子图谱文件"""
  36. post_graph_dir = config.intermediate_dir / "post_graph"
  37. return sorted(post_graph_dir.glob("*_帖子图谱.json"))
  38. # ===== 第一步:数据准备 =====
  39. def extract_post_detail(post_graph: Dict) -> Dict:
  40. """提取帖子详情"""
  41. meta = post_graph.get("meta", {})
  42. post_detail = meta.get("postDetail", {})
  43. return {
  44. "postId": meta.get("postId", ""),
  45. "postTitle": meta.get("postTitle", ""),
  46. "body_text": post_detail.get("body_text", ""),
  47. "images": post_detail.get("images", []),
  48. "video": post_detail.get("video"),
  49. "publish_time": post_detail.get("publish_time", ""),
  50. "like_count": post_detail.get("like_count", 0),
  51. "collect_count": post_detail.get("collect_count", 0),
  52. }
  53. def extract_analysis_nodes(post_graph: Dict, persona_graph: Dict) -> tuple:
  54. """
  55. 提取待分析节点列表
  56. 待分析节点 = 灵感点 + 目的点 + 关键点
  57. """
  58. nodes = post_graph.get("nodes", {})
  59. edges = post_graph.get("edges", {})
  60. persona_nodes = persona_graph.get("nodes", {})
  61. persona_index = persona_graph.get("index", {})
  62. # 1. 收集关键点信息
  63. keypoints = {}
  64. for node_id, node in nodes.items():
  65. if node.get("type") == "标签" and node.get("dimension") == "关键点":
  66. keypoints[node_id] = {
  67. "名称": node.get("name", ""),
  68. "描述": node.get("detail", {}).get("description", ""),
  69. }
  70. # 2. 分析支撑关系
  71. support_map = {}
  72. for edge_id, edge in edges.items():
  73. if edge.get("type") == "支撑":
  74. source_id = edge.get("source", "")
  75. target_id = edge.get("target", "")
  76. if source_id in keypoints:
  77. if target_id not in support_map:
  78. support_map[target_id] = []
  79. support_map[target_id].append(keypoints[source_id])
  80. # 3. 分析关联关系
  81. relation_map = {}
  82. for edge_id, edge in edges.items():
  83. if edge.get("type") == "关联":
  84. source_id = edge.get("source", "")
  85. target_id = edge.get("target", "")
  86. source_name = nodes.get(source_id, {}).get("name", "")
  87. target_name = nodes.get(target_id, {}).get("name", "")
  88. if source_id not in relation_map:
  89. relation_map[source_id] = []
  90. relation_map[source_id].append(target_name)
  91. if target_id not in relation_map:
  92. relation_map[target_id] = []
  93. relation_map[target_id].append(source_name)
  94. # 4. 分析人设匹配
  95. match_map = {}
  96. persona_out_edges = persona_index.get("outEdges", {})
  97. def get_node_info(node_id: str) -> Optional[Dict]:
  98. """获取人设节点的标准信息"""
  99. node = persona_nodes.get(node_id, {})
  100. if not node:
  101. return None
  102. detail = node.get("detail", {})
  103. parent_path = detail.get("parentPath", [])
  104. return {
  105. "节点ID": node_id,
  106. "节点名称": node.get("name", ""),
  107. "节点分类": "/".join(parent_path) if parent_path else "",
  108. "节点维度": node.get("dimension", ""),
  109. "节点类型": node.get("type", ""),
  110. "人设全局占比": detail.get("probGlobal", 0),
  111. "父类下占比": detail.get("probToParent", 0),
  112. }
  113. def get_parent_category_id(node_id: str) -> Optional[str]:
  114. """通过属于边获取父分类节点ID"""
  115. belong_edges = persona_out_edges.get(node_id, {}).get("属于", [])
  116. for edge in belong_edges:
  117. target_id = edge.get("target", "")
  118. target_node = persona_nodes.get(target_id, {})
  119. if target_node.get("type") == "分类":
  120. return target_id
  121. return None
  122. for edge_id, edge in edges.items():
  123. if edge.get("type") == "匹配":
  124. source_id = edge.get("source", "")
  125. target_id = edge.get("target", "")
  126. if source_id.startswith("帖子:") and target_id.startswith("人设:"):
  127. match_score = edge.get("score", 0)
  128. persona_node = persona_nodes.get(target_id, {})
  129. if persona_node:
  130. node_type = persona_node.get("type", "")
  131. match_node_info = get_node_info(target_id)
  132. if not match_node_info:
  133. continue
  134. if node_type == "标签":
  135. category_id = get_parent_category_id(target_id)
  136. else:
  137. category_id = target_id
  138. category_info = None
  139. if category_id:
  140. category_node = persona_nodes.get(category_id, {})
  141. if category_node:
  142. category_detail = category_node.get("detail", {})
  143. category_path = category_detail.get("parentPath", [])
  144. category_info = {
  145. "节点ID": category_id,
  146. "节点名称": category_node.get("name", ""),
  147. "节点分类": "/".join(category_path) if category_path else "",
  148. "节点维度": category_node.get("dimension", ""),
  149. "节点类型": "分类",
  150. "人设全局占比": category_detail.get("probGlobal", 0),
  151. "父类下占比": category_detail.get("probToParent", 0),
  152. "历史共现分类": [],
  153. }
  154. co_occur_edges = persona_out_edges.get(category_id, {}).get("分类共现", [])
  155. co_occur_edges_sorted = sorted(co_occur_edges, key=lambda x: x.get("score", 0), reverse=True)
  156. for co_edge in co_occur_edges_sorted[:5]:
  157. co_target_id = co_edge.get("target", "")
  158. co_score = co_edge.get("score", 0)
  159. co_node = persona_nodes.get(co_target_id, {})
  160. if co_node:
  161. co_detail = co_node.get("detail", {})
  162. co_path = co_detail.get("parentPath", [])
  163. category_info["历史共现分类"].append({
  164. "节点ID": co_target_id,
  165. "节点名称": co_node.get("name", ""),
  166. "节点分类": "/".join(co_path) if co_path else "",
  167. "节点维度": co_node.get("dimension", ""),
  168. "节点类型": "分类",
  169. "人设全局占比": co_detail.get("probGlobal", 0),
  170. "父类下占比": co_detail.get("probToParent", 0),
  171. "共现度": round(co_score, 4),
  172. })
  173. if source_id not in match_map:
  174. match_map[source_id] = []
  175. match_map[source_id].append({
  176. "匹配节点": match_node_info,
  177. "匹配分数": round(match_score, 4),
  178. "所属分类": category_info,
  179. })
  180. # 5. 构建待分析节点列表
  181. analysis_nodes = []
  182. for node_id, node in nodes.items():
  183. if node.get("type") == "标签" and node.get("domain") == "帖子":
  184. dimension = node.get("dimension", "")
  185. if dimension in ["灵感点", "目的点", "关键点"]:
  186. match_info = match_map.get(node_id)
  187. analysis_nodes.append({
  188. "节点ID": node_id,
  189. "节点名称": node.get("name", ""),
  190. "节点分类": node.get("category", ""),
  191. "节点维度": dimension,
  192. "节点类型": node.get("type", ""),
  193. "节点描述": node.get("detail", {}).get("description", ""),
  194. "人设匹配": match_info,
  195. })
  196. # 6. 构建关系列表
  197. relation_list = []
  198. for edge_id, edge in edges.items():
  199. if edge.get("type") == "支撑":
  200. source_id = edge.get("source", "")
  201. target_id = edge.get("target", "")
  202. if source_id in keypoints:
  203. relation_list.append({
  204. "来源节点": source_id,
  205. "目标节点": target_id,
  206. "关系类型": "支撑",
  207. })
  208. seen_relations = set()
  209. for edge_id, edge in edges.items():
  210. if edge.get("type") == "关联":
  211. source_id = edge.get("source", "")
  212. target_id = edge.get("target", "")
  213. key = tuple(sorted([source_id, target_id]))
  214. if key not in seen_relations:
  215. seen_relations.add(key)
  216. relation_list.append({
  217. "来源节点": source_id,
  218. "目标节点": target_id,
  219. "关系类型": "关联",
  220. })
  221. return analysis_nodes, relation_list
  222. def prepare_analysis_data(post_graph: Dict, persona_graph: Dict) -> Dict:
  223. """
  224. 准备完整的分析数据
  225. 输出扁平化的节点列表 + 独立的人设共现关系数据
  226. """
  227. analysis_nodes, relation_list = extract_analysis_nodes(post_graph, persona_graph)
  228. # 扁平化节点,提取人设共现关系数据
  229. flat_nodes = []
  230. persona_co_occur = {} # {分类ID: {名称, 共现分类列表}}
  231. for node in analysis_nodes:
  232. # 基础节点字段
  233. flat_node = {
  234. "节点ID": node["节点ID"],
  235. "节点名称": node["节点名称"],
  236. "节点分类": node.get("节点分类", ""),
  237. "节点维度": node["节点维度"],
  238. "节点描述": node.get("节点描述", ""),
  239. "是否已知": False,
  240. "发现编号": None,
  241. }
  242. # 提取人设匹配信息(list格式,支持多个匹配)
  243. match_list = node.get("人设匹配") or []
  244. if match_list:
  245. flat_node["人设匹配"] = []
  246. for match_info in match_list:
  247. category_info = match_info.get("所属分类")
  248. category_id = category_info.get("节点ID") if category_info else None
  249. # 保留完整的匹配信息,但去掉历史共现分类(拆到外面)
  250. clean_match = {
  251. "匹配节点": match_info.get("匹配节点"),
  252. "匹配分数": match_info.get("匹配分数", 0),
  253. }
  254. if category_info:
  255. # 复制所属分类,但不包含历史共现分类
  256. clean_category = {k: v for k, v in category_info.items() if k != "历史共现分类"}
  257. clean_match["所属分类"] = clean_category
  258. flat_node["人设匹配"].append(clean_match)
  259. # 收集人设共现关系(去重)- 从历史共现分类拆出来
  260. if category_id and category_id not in persona_co_occur:
  261. co_occur_list = category_info.get("历史共现分类", [])
  262. if co_occur_list:
  263. persona_co_occur[category_id] = [
  264. {
  265. "节点ID": c.get("节点ID"),
  266. "节点名称": c.get("节点名称"),
  267. "节点分类": c.get("节点分类", ""),
  268. "节点维度": c.get("节点维度", ""),
  269. "节点类型": c.get("节点类型", ""),
  270. "人设全局占比": c.get("人设全局占比", 0),
  271. "父类下占比": c.get("父类下占比", 0),
  272. "共现度": c.get("共现度", 0),
  273. }
  274. for c in co_occur_list
  275. if c.get("节点ID")
  276. ]
  277. else:
  278. flat_node["人设匹配"] = []
  279. flat_nodes.append(flat_node)
  280. return {
  281. "帖子详情": extract_post_detail(post_graph),
  282. "节点列表": flat_nodes,
  283. "关系列表": relation_list,
  284. "人设共现关系": persona_co_occur,
  285. }
  286. # ===== 第二步:起点分析(新版prompt) =====
  287. def get_best_match(node: Dict) -> Optional[Dict]:
  288. """获取节点的最佳人设匹配(分数最高的)"""
  289. match_list = node.get("人设匹配") or []
  290. if not match_list:
  291. return None
  292. return max(match_list, key=lambda m: m.get("匹配分数", 0))
  293. def get_match_score(node: Dict) -> float:
  294. """获取节点的最高人设匹配分数"""
  295. best_match = get_best_match(node)
  296. if best_match:
  297. return best_match.get("匹配分数", 0)
  298. return 0
  299. def get_category_id(node: Dict) -> Optional[str]:
  300. """获取节点的所属分类ID(最佳匹配的)"""
  301. best_match = get_best_match(node)
  302. if best_match:
  303. category = best_match.get("所属分类")
  304. if category:
  305. return category.get("节点ID")
  306. return None
  307. def get_all_category_ids(node: Dict) -> List[str]:
  308. """获取节点所有匹配的分类ID"""
  309. match_list = node.get("人设匹配") or []
  310. result = []
  311. for m in match_list:
  312. category = m.get("所属分类")
  313. if category and category.get("节点ID"):
  314. result.append(category.get("节点ID"))
  315. return result
  316. def get_category_global_ratio(node: Dict) -> float:
  317. """获取节点所属分类的人设全局占比(最佳匹配的)"""
  318. best_match = get_best_match(node)
  319. if best_match:
  320. category = best_match.get("所属分类")
  321. if category:
  322. return category.get("人设全局占比", 0)
  323. return 0
  324. def is_persona_constant(node: Dict) -> bool:
  325. """判断节点是否为人设常量(匹配分数 >= 0.8 且 分类全局占比 >= 0.8)"""
  326. match_score = get_match_score(node)
  327. global_ratio = get_category_global_ratio(node)
  328. return match_score >= MATCH_SCORE_THRESHOLD and global_ratio >= GLOBAL_RATIO_THRESHOLD
  329. def build_origin_context(nodes: List[Dict]) -> Dict:
  330. """构造AI分析的上下文(新版格式)"""
  331. # 所有创意标签
  332. all_tags = []
  333. for node in nodes:
  334. all_tags.append({
  335. "名称": node["节点名称"],
  336. "人设匹配度": round(get_match_score(node), 2),
  337. "所属分类全局占比": round(get_category_global_ratio(node), 2),
  338. })
  339. # 起点候选集(灵感点 + 目的点)
  340. candidates = [
  341. node["节点名称"]
  342. for node in nodes
  343. if node["节点维度"] in ["灵感点", "目的点"]
  344. ]
  345. return {
  346. "all_tags": all_tags,
  347. "candidates": candidates,
  348. }
  349. def format_origin_prompt(context: Dict) -> str:
  350. """格式化起点分析的prompt(新版)"""
  351. all_tags = context["all_tags"]
  352. candidates = context["candidates"]
  353. # 创意标签列表
  354. tags_text = ""
  355. for tag in all_tags:
  356. tags_text += f"- {tag['名称']}\n"
  357. tags_text += f" 人设匹配度: {tag['人设匹配度']} | 所属分类全局占比: {tag['所属分类全局占比']}\n\n"
  358. # 起点候选集(一行)
  359. candidates_text = "、".join(candidates)
  360. prompt = f"""# Role
  361. 你是小红书爆款内容的"逆向工程"专家。你的核心能力是透过内容的表象,还原创作者最初的脑回路。
  362. # Task
  363. 我提供一组笔记的【创意标签】和一个【起点候选集】。
  364. 请推理出哪些选项是真正的**创意起点**。
  365. # Input Data
  366. ## 创意标签
  367. {tags_text}
  368. ## 起点候选集
  369. {candidates_text}
  370. # 推理约束
  371. - 无法被其他项或人设推理出的点,即为起点(推理关系局限在起点候选集中)
  372. - 包含/被包含关系代表一种顺序:由大节点推导出被包含节点
  373. - 目的推理手段
  374. - 实质推理形式
  375. - 和人设匹配度越低的帖子是起点概率越大,证明这个起点具备外部性
  376. # Output Format
  377. 请输出一个标准的 JSON 格式。
  378. - Key: 候选集中的词。
  379. - Value: 一个对象,包含:
  380. - `score`: 0.0 到 1.0 的浮点数(代表是起点的可能性)。
  381. - `analysis`: 一句话推理"""
  382. return prompt
  383. async def analyze_origin(nodes: List[Dict], force_llm: bool = False) -> Dict:
  384. """
  385. 执行起点分析
  386. 输入: 节点列表
  387. 输出: 节点列表(加了起点分析、是否已知、发现编号字段)+ 中间结果
  388. """
  389. context = build_origin_context(nodes)
  390. prompt = format_origin_prompt(context)
  391. print(f"\n 起点候选: {len(context['candidates'])} 个")
  392. result = await analyze(
  393. prompt=prompt,
  394. task_name=f"{TASK_NAME}/origin",
  395. force=force_llm,
  396. parse_json=True,
  397. )
  398. # 把分析结果合并到节点
  399. llm_result = result.data or {}
  400. output_nodes = []
  401. # 同一个步骤出来的节点使用相同的发现编号
  402. step_order = 1 # 起点分析步骤的编号
  403. for node in nodes:
  404. new_node = dict(node) # 复制原节点
  405. name = node["节点名称"]
  406. if name in llm_result:
  407. score = llm_result[name].get("score", 0)
  408. analysis = llm_result[name].get("analysis", "")
  409. # 加起点分析
  410. new_node["起点分析"] = {
  411. "分数": score,
  412. "说明": analysis,
  413. }
  414. # 高分起点标记为已知(同一步骤的节点使用相同编号)
  415. if score >= ORIGIN_SCORE_THRESHOLD:
  416. new_node["是否已知"] = True
  417. new_node["发现编号"] = step_order
  418. else:
  419. new_node["起点分析"] = None
  420. output_nodes.append(new_node)
  421. return {
  422. "输入上下文": {
  423. "创意标签": context["all_tags"],
  424. "起点候选": context["candidates"],
  425. },
  426. "中间结果": llm_result,
  427. "输出节点": output_nodes,
  428. "cache_hit": result.cache_hit,
  429. "model": result.model_name,
  430. "log_url": result.log_url,
  431. }
  432. # ===== 第三步:模式推导 =====
  433. def derive_patterns(
  434. nodes: List[Dict],
  435. persona_co_occur: Dict[str, Dict],
  436. ) -> Dict:
  437. """
  438. 基于共现关系的迭代推导
  439. 输入: 带起点分析的节点列表 + 人设共现关系数据
  440. 输出: 节点列表(加了推导轮次、未知原因字段)+ 推导边列表
  441. """
  442. node_by_name: Dict[str, Dict] = {n["节点名称"]: n for n in nodes}
  443. # 构建共现查找表 {节点ID: {共现节点ID: 共现度}}
  444. co_occur_lookup = {}
  445. for cat_id, co_occur_list in persona_co_occur.items():
  446. co_occur_lookup[cat_id] = {
  447. c["节点ID"]: c["共现度"]
  448. for c in co_occur_list
  449. }
  450. # 1. 初始化已知点集合(已经是已知的节点)
  451. known_names: Set[str] = set()
  452. node_round: Dict[str, int] = {} # {节点名称: 加入轮次}
  453. for node in nodes:
  454. if node.get("是否已知"):
  455. known_names.add(node["节点名称"])
  456. node_round[node["节点名称"]] = 0
  457. unknown_names: Set[str] = set(node_by_name.keys()) - known_names
  458. edges: List[Dict] = []
  459. # 2. 迭代推导
  460. round_num = 0
  461. new_known_this_round = known_names.copy()
  462. while new_known_this_round:
  463. round_num += 1
  464. new_known_next_round: Set[str] = set()
  465. for known_name in new_known_this_round:
  466. known_node = node_by_name.get(known_name)
  467. if not known_node:
  468. continue
  469. if get_match_score(known_node) < MATCH_SCORE_THRESHOLD:
  470. continue
  471. # 获取该节点所属分类的共现列表
  472. known_cat_id = get_category_id(known_node)
  473. if not known_cat_id or known_cat_id not in co_occur_lookup:
  474. continue
  475. co_occur_map = co_occur_lookup[known_cat_id]
  476. for unknown_name in list(unknown_names):
  477. unknown_node = node_by_name.get(unknown_name)
  478. if not unknown_node:
  479. continue
  480. if get_match_score(unknown_node) < MATCH_SCORE_THRESHOLD:
  481. continue
  482. # 检查未知节点的分类是否在已知节点的共现列表中
  483. unknown_cat_id = get_category_id(unknown_node)
  484. if unknown_cat_id and unknown_cat_id in co_occur_map:
  485. co_occur_score = co_occur_map[unknown_cat_id]
  486. new_known_next_round.add(unknown_name)
  487. node_round[unknown_name] = round_num
  488. edges.append({
  489. "来源": known_node["节点ID"],
  490. "目标": unknown_node["节点ID"],
  491. "关系类型": "共现推导",
  492. "推导轮次": round_num,
  493. "共现分类ID": unknown_cat_id,
  494. "共现度": co_occur_score,
  495. })
  496. known_names.update(new_known_next_round)
  497. unknown_names -= new_known_next_round
  498. new_known_this_round = new_known_next_round
  499. if not new_known_next_round:
  500. break
  501. # 3. 构建输出节点(只更新是否已知、发现编号)
  502. # 先找出当前最大发现编号
  503. max_order = 0
  504. for node in nodes:
  505. if node.get("发现编号") and node["发现编号"] > max_order:
  506. max_order = node["发现编号"]
  507. # 按推导轮次排序新发现的节点,分配发现编号
  508. new_known_by_round = {}
  509. for name, r in node_round.items():
  510. if r > 0: # 排除起点(轮次0)
  511. if r not in new_known_by_round:
  512. new_known_by_round[r] = []
  513. new_known_by_round[r].append(name)
  514. # 分配发现编号(同一轮次的节点使用相同编号)
  515. order_map = {}
  516. for r in sorted(new_known_by_round.keys()):
  517. step_order = max_order + r # 同一轮次使用相同编号
  518. for name in new_known_by_round[r]:
  519. order_map[name] = step_order
  520. output_nodes = []
  521. for node in nodes:
  522. new_node = dict(node)
  523. name = node["节点名称"]
  524. # 如果是新推导出来的(非起点),更新已知状态和发现编号
  525. if name in node_round and node_round[name] > 0:
  526. new_node["是否已知"] = True
  527. new_node["发现编号"] = order_map.get(name)
  528. output_nodes.append(new_node)
  529. return {
  530. "输出节点": output_nodes,
  531. "推导边列表": edges,
  532. "推导轮次": round_num,
  533. }
  534. # ===== 第四步:下一步分析 =====
  535. def build_next_step_context(known_nodes: List[Dict], unknown_nodes: List[Dict], all_nodes: List[Dict]) -> Dict:
  536. """构造下一步分析的上下文(简化版)"""
  537. # 已知点信息(按发现顺序排序,只保留名称和维度)
  538. known_sorted = sorted(known_nodes, key=lambda n: n.get("发现编号") or 999)
  539. known_info = [
  540. {"名称": n["节点名称"], "维度": n["节点维度"]}
  541. for n in known_sorted
  542. ]
  543. # 未知点信息(只保留名称和维度)
  544. unknown_info = [
  545. {"名称": n["节点名称"], "维度": n["节点维度"]}
  546. for n in unknown_nodes
  547. ]
  548. return {
  549. "known_nodes": known_info,
  550. "unknown_nodes": unknown_info,
  551. }
  552. def format_next_step_prompt(context: Dict) -> str:
  553. """格式化下一步分析的prompt(简化版)"""
  554. # 已知点:- 名称 (维度)
  555. known_text = "\n".join([
  556. f"- {n['名称']} ({n['维度']})"
  557. for n in context["known_nodes"]
  558. ])
  559. # 未知点:- 名称 (维度)
  560. unknown_text = "\n".join([
  561. f"- {n['名称']} ({n['维度']})"
  562. for n in context["unknown_nodes"]
  563. ])
  564. prompt = f"""# Role
  565. 你是小红书爆款内容的"逆向工程"专家。你的任务是还原创作者的思维路径。
  566. # Task
  567. 基于已知的创意点,推理哪些未知点最可能是创作者**下一步直接想到**的点。
  568. 可以有多个点同时被想到(如果它们在逻辑上是并列的)。
  569. ## 已知点
  570. {known_text}
  571. ## 未知点(待推理)
  572. {unknown_text}
  573. # 推理约束
  574. - 创作者的思维是有逻辑的:先有实质,再想形式
  575. - 包含/被包含关系代表一种顺序:由大节点推导出被包含节点
  576. - 只输出"下一步直接能想到"的点,不是所有未知点
  577. # Output Format
  578. 输出 JSON,对每个未知点评分:
  579. - Key: 未知点名称
  580. - Value: 对象,包含:
  581. - `score`: 0.0-1.0(下一步被想到的可能性)
  582. - `from`: 从哪个已知点推导出来(已知点名称),数组
  583. - `reason`: 如何从该已知点推导出来(一句话)"""
  584. return prompt
  585. async def analyze_next_step(
  586. nodes: List[Dict],
  587. force_llm: bool = False
  588. ) -> Dict:
  589. """
  590. 执行下一步分析
  591. 输入: 节点列表(有已知和未知)
  592. 输出: 最可能的下一步点列表
  593. """
  594. # 分离已知和未知
  595. known_nodes = [n for n in nodes if n.get("是否已知")]
  596. unknown_nodes = [n for n in nodes if not n.get("是否已知")]
  597. if not unknown_nodes:
  598. return {
  599. "输入上下文": {"已知点": [], "未知点": []},
  600. "中间结果": [],
  601. "下一步点": [],
  602. }
  603. context = build_next_step_context(known_nodes, unknown_nodes, nodes)
  604. prompt = format_next_step_prompt(context)
  605. print(f"\n 已知点: {len(known_nodes)} 个")
  606. print(f" 未知点: {len(unknown_nodes)} 个")
  607. result = await analyze(
  608. prompt=prompt,
  609. task_name=f"{TASK_NAME}/next_step",
  610. force=force_llm,
  611. parse_json=True,
  612. )
  613. # 解析结果(现在是 {name: {score, from, reason}} 格式)
  614. llm_result = result.data or {}
  615. # 构建候选列表,按分数排序
  616. candidates = []
  617. for name, info in llm_result.items():
  618. # from 现在是数组
  619. from_list = info.get("from", [])
  620. if isinstance(from_list, str):
  621. from_list = [from_list] # 兼容旧格式
  622. candidates.append({
  623. "节点名称": name,
  624. "可能性分数": info.get("score", 0),
  625. "推导来源": from_list,
  626. "推理说明": info.get("reason", ""),
  627. })
  628. candidates.sort(key=lambda x: x["可能性分数"], reverse=True)
  629. return {
  630. "输入上下文": {
  631. "已知点": context["known_nodes"],
  632. "未知点": context["unknown_nodes"],
  633. },
  634. "中间结果": llm_result,
  635. "下一步候选": candidates,
  636. "cache_hit": result.cache_hit,
  637. "model": result.model_name,
  638. "log_url": result.log_url,
  639. }
  640. # ===== 完整流程 =====
  641. def save_result(post_id: str, post_detail: Dict, steps: List, config: PathConfig) -> Path:
  642. """保存结果到文件"""
  643. output_dir = config.intermediate_dir / OUTPUT_DIR_NAME
  644. output_dir.mkdir(parents=True, exist_ok=True)
  645. output_file = output_dir / f"{post_id}_创作模式.json"
  646. result = {
  647. "帖子详情": post_detail,
  648. "步骤列表": steps,
  649. }
  650. with open(output_file, "w", encoding="utf-8") as f:
  651. json.dump(result, f, ensure_ascii=False, indent=2)
  652. print(f" [已保存] {output_file.name}")
  653. return output_file
  654. async def process_single_post(
  655. post_file: Path,
  656. persona_graph: Dict,
  657. config: PathConfig,
  658. force_llm: bool = False,
  659. max_step: int = 3,
  660. ) -> Dict:
  661. """
  662. 处理单个帖子
  663. Args:
  664. force_llm: 强制重新调用LLM(跳过LLM缓存)
  665. max_step: 最多运行到第几步 (1=数据准备, 2=起点分析, 3=模式推导)
  666. """
  667. post_graph = load_json(post_file)
  668. post_id = post_graph.get("meta", {}).get("postId", "unknown")
  669. print(f"\n{'=' * 60}")
  670. print(f"处理帖子: {post_id}")
  671. print("-" * 60)
  672. steps = []
  673. # ===== 步骤1:数据准备 =====
  674. print("\n[步骤1] 数据准备...")
  675. data = prepare_analysis_data(post_graph, persona_graph)
  676. post_detail = data["帖子详情"]
  677. nodes_step1 = data["节点列表"]
  678. relations_step1 = data["关系列表"]
  679. persona_co_occur = data["人设共现关系"]
  680. # 步骤1所有节点都是新的
  681. new_known_step1 = [n["节点名称"] for n in nodes_step1 if n.get("是否已知")]
  682. step1 = {
  683. "步骤": "数据准备",
  684. "输入": {
  685. "帖子图谱": str(post_file.name),
  686. "人设图谱": "人设图谱.json",
  687. },
  688. "输出": {
  689. "新的已知节点": new_known_step1,
  690. "新的边": [],
  691. "节点列表": nodes_step1,
  692. "边列表": relations_step1,
  693. },
  694. "人设共现关系": persona_co_occur,
  695. "摘要": {
  696. "节点数": len(nodes_step1),
  697. "边数": len(relations_step1),
  698. "人设共现数": len(persona_co_occur),
  699. },
  700. }
  701. steps.append(step1)
  702. print(f" 节点数: {len(nodes_step1)}")
  703. print(f" 关系数: {len(relations_step1)}")
  704. print(f" 人设共现数: {len(persona_co_occur)}")
  705. # 步骤1完成,保存
  706. save_result(post_id, post_detail, steps, config)
  707. if max_step == 1:
  708. return {"帖子详情": post_detail, "步骤列表": steps}
  709. # ===== 步骤2:起点分析 =====
  710. print("\n[步骤2] 起点分析...")
  711. origin_result = await analyze_origin(nodes_step1, force_llm=force_llm)
  712. nodes_step2 = origin_result["输出节点"]
  713. # 统计高分起点
  714. def get_origin_score(node):
  715. analysis = node.get("起点分析")
  716. if analysis:
  717. return analysis.get("分数", 0)
  718. return 0
  719. high_score_origins = [
  720. (n["节点名称"], get_origin_score(n))
  721. for n in nodes_step2
  722. if get_origin_score(n) >= 0.7
  723. ]
  724. # 新发现的已知节点(起点)
  725. new_known_nodes = [n["节点名称"] for n in nodes_step2 if n.get("是否已知")]
  726. step2 = {
  727. "步骤": "起点分析",
  728. "输入": {
  729. "节点列表": nodes_step1,
  730. "创意标签": origin_result["输入上下文"]["创意标签"],
  731. "起点候选": origin_result["输入上下文"]["起点候选"],
  732. },
  733. "中间结果": origin_result["中间结果"],
  734. "输出": {
  735. "新的已知节点": new_known_nodes,
  736. "新的边": [],
  737. "节点列表": nodes_step2,
  738. "边列表": relations_step1, # 边没变化
  739. },
  740. "摘要": {
  741. "新已知数": len(new_known_nodes),
  742. "model": origin_result["model"],
  743. "cache_hit": origin_result["cache_hit"],
  744. "log_url": origin_result.get("log_url"),
  745. },
  746. }
  747. steps.append(step2)
  748. print(f" 高分起点 (>=0.7): {len(high_score_origins)} 个")
  749. for name, score in sorted(high_score_origins, key=lambda x: -x[1]):
  750. print(f" ★ {name}: {score:.2f}")
  751. # 步骤2完成,保存
  752. save_result(post_id, post_detail, steps, config)
  753. if max_step == 2:
  754. return {"帖子详情": post_detail, "步骤列表": steps}
  755. # ===== 步骤3:模式推导 =====
  756. print("\n[步骤3] 模式推导...")
  757. derivation_result = derive_patterns(nodes_step2, persona_co_occur)
  758. nodes_step3 = derivation_result["输出节点"]
  759. edges = derivation_result["推导边列表"]
  760. # 统计
  761. known_count = sum(1 for n in nodes_step3 if n.get("是否已知"))
  762. unknown_count = len(nodes_step3) - known_count
  763. # 新发现的已知节点(本步骤推导出来的,不包括之前的起点)
  764. prev_known = {n["节点名称"] for n in nodes_step2 if n.get("是否已知")}
  765. new_known_nodes = [n["节点名称"] for n in nodes_step3 if n.get("是否已知") and n["节点名称"] not in prev_known]
  766. # 合并边列表(原有边 + 推导边)
  767. all_edges = relations_step1 + edges
  768. step3 = {
  769. "步骤": "模式推导",
  770. "输入": {
  771. "节点列表": nodes_step2,
  772. "人设共现关系": persona_co_occur,
  773. },
  774. "输出": {
  775. "新的已知节点": new_known_nodes,
  776. "新的边": edges,
  777. "节点列表": nodes_step3,
  778. "边列表": all_edges,
  779. },
  780. "摘要": {
  781. "已知点数": known_count,
  782. "新已知数": len(new_known_nodes),
  783. "新边数": len(edges),
  784. "未知点数": unknown_count,
  785. },
  786. }
  787. steps.append(step3)
  788. print(f" 已知点: {known_count} 个")
  789. print(f" 推导边: {len(edges)} 条")
  790. print(f" 未知点: {unknown_count} 个")
  791. # 步骤3完成,保存
  792. save_result(post_id, post_detail, steps, config)
  793. if max_step == 3:
  794. return {"帖子详情": post_detail, "步骤列表": steps}
  795. # ===== 步骤4:下一步分析 =====
  796. print("\n[步骤4] 下一步分析...")
  797. next_step_result = await analyze_next_step(nodes_step3, force_llm=force_llm)
  798. # 获取候选列表
  799. candidates = next_step_result["下一步候选"]
  800. # 筛选高分候选 (>= 0.8)
  801. NEXT_STEP_THRESHOLD = 0.8
  802. high_score_candidates = [c for c in candidates if c["可能性分数"] >= NEXT_STEP_THRESHOLD]
  803. # 构建节点名称到节点的映射
  804. node_by_name = {n["节点名称"]: n for n in nodes_step3}
  805. # 找出当前最大发现编号
  806. max_order = max((n.get("发现编号") or 0) for n in nodes_step3)
  807. # 更新节点:把高分候选标记为已知(同一步骤的节点使用相同编号)
  808. nodes_step4 = []
  809. new_known_names = []
  810. step_order = max_order + 1 # 同一步骤的节点使用相同编号
  811. for node in nodes_step3:
  812. new_node = dict(node)
  813. name = node["节点名称"]
  814. # 检查是否在高分候选中
  815. matching = [c for c in high_score_candidates if c["节点名称"] == name]
  816. if matching and not node.get("是否已知"):
  817. new_node["是否已知"] = True
  818. new_node["发现编号"] = step_order # 同一步骤使用相同编号
  819. new_known_names.append(name)
  820. nodes_step4.append(new_node)
  821. # 创建新的边(推导边,from 是数组,为每个来源创建一条边)
  822. new_edges = []
  823. for c in high_score_candidates:
  824. target_node = node_by_name.get(c["节点名称"])
  825. if not target_node:
  826. continue
  827. for source_name in c["推导来源"]:
  828. source_node = node_by_name.get(source_name)
  829. if source_node:
  830. new_edges.append({
  831. "来源": source_node["节点ID"],
  832. "目标": target_node["节点ID"],
  833. "关系类型": "AI推导",
  834. "可能性分数": c["可能性分数"],
  835. "推理说明": c["推理说明"],
  836. })
  837. # 合并边列表
  838. all_edges_step4 = all_edges + new_edges
  839. step4 = {
  840. "步骤": "下一步分析",
  841. "输入": {
  842. "已知点": next_step_result["输入上下文"]["已知点"],
  843. "未知点": next_step_result["输入上下文"]["未知点"],
  844. },
  845. "中间结果": next_step_result["中间结果"],
  846. "输出": {
  847. "新的已知节点": new_known_names,
  848. "新的边": new_edges,
  849. "节点列表": nodes_step4,
  850. "边列表": all_edges_step4,
  851. },
  852. "摘要": {
  853. "已知点数": sum(1 for n in nodes_step4 if n.get("是否已知")),
  854. "新已知数": len(new_known_names),
  855. "新边数": len(new_edges),
  856. "未知点数": sum(1 for n in nodes_step4 if not n.get("是否已知")),
  857. "model": next_step_result.get("model"),
  858. "cache_hit": next_step_result.get("cache_hit"),
  859. "log_url": next_step_result.get("log_url"),
  860. },
  861. }
  862. steps.append(step4)
  863. # 打印高分候选
  864. print(f" 候选数: {len(candidates)} 个")
  865. print(f" 高分候选 (>={NEXT_STEP_THRESHOLD}): {len(high_score_candidates)} 个")
  866. for c in high_score_candidates:
  867. from_str = " & ".join(c["推导来源"])
  868. print(f" ★ {c['节点名称']} ({c['可能性分数']:.2f}) ← {from_str}")
  869. print(f" {c['推理说明']}")
  870. # 步骤4完成,保存
  871. save_result(post_id, post_detail, steps, config)
  872. if max_step == 4:
  873. return {"帖子详情": post_detail, "步骤列表": steps}
  874. # ===== 循环:步骤3→步骤4 直到全部已知 =====
  875. iteration = 1
  876. current_nodes = nodes_step4
  877. current_edges = all_edges_step4
  878. MAX_ITERATIONS = 10 # 防止无限循环
  879. while True:
  880. # 检查是否还有未知节点
  881. unknown_count = sum(1 for n in current_nodes if not n.get("是否已知"))
  882. if unknown_count == 0:
  883. print(f"\n[完成] 所有节点已变为已知")
  884. break
  885. if iteration > MAX_ITERATIONS:
  886. print(f"\n[警告] 达到最大迭代次数 {MAX_ITERATIONS},停止循环")
  887. break
  888. # ===== 迭代步骤3:共现推导 =====
  889. print(f"\n[迭代{iteration}-步骤3] 模式推导...")
  890. derivation_result = derive_patterns(current_nodes, persona_co_occur)
  891. nodes_iter3 = derivation_result["输出节点"]
  892. edges_iter3 = derivation_result["推导边列表"]
  893. # 统计新推导的
  894. prev_known_names = {n["节点名称"] for n in current_nodes if n.get("是否已知")}
  895. new_known_step3 = [n["节点名称"] for n in nodes_iter3 if n.get("是否已知") and n["节点名称"] not in prev_known_names]
  896. new_edges_step3 = edges_iter3 # derive_patterns 返回的是本轮新增的边
  897. all_edges_iter3 = current_edges + new_edges_step3
  898. step_iter3 = {
  899. "步骤": f"迭代{iteration}-模式推导",
  900. "输入": {
  901. "节点列表": current_nodes,
  902. "人设共现关系": persona_co_occur,
  903. },
  904. "输出": {
  905. "新的已知节点": new_known_step3,
  906. "新的边": new_edges_step3,
  907. "节点列表": nodes_iter3,
  908. "边列表": all_edges_iter3,
  909. },
  910. "摘要": {
  911. "已知点数": sum(1 for n in nodes_iter3 if n.get("是否已知")),
  912. "新已知数": len(new_known_step3),
  913. "新边数": len(new_edges_step3),
  914. "未知点数": sum(1 for n in nodes_iter3 if not n.get("是否已知")),
  915. },
  916. }
  917. steps.append(step_iter3)
  918. print(f" 新已知: {len(new_known_step3)} 个")
  919. print(f" 新边: {len(new_edges_step3)} 条")
  920. save_result(post_id, post_detail, steps, config)
  921. # 检查是否还有未知
  922. unknown_after_step3 = sum(1 for n in nodes_iter3 if not n.get("是否已知"))
  923. if unknown_after_step3 == 0:
  924. print(f"\n[完成] 所有节点已变为已知")
  925. break
  926. # ===== 迭代步骤4:AI推导 =====
  927. print(f"\n[迭代{iteration}-步骤4] 下一步分析...")
  928. next_step_result = await analyze_next_step(nodes_iter3, force_llm=force_llm)
  929. candidates_iter4 = next_step_result["下一步候选"]
  930. high_score_iter4 = [c for c in candidates_iter4 if c["可能性分数"] >= NEXT_STEP_THRESHOLD]
  931. # 更新节点(同一步骤的节点使用相同编号)
  932. node_by_name_iter4 = {n["节点名称"]: n for n in nodes_iter3}
  933. max_order_iter4 = max((n.get("发现编号") or 0) for n in nodes_iter3)
  934. nodes_iter4 = []
  935. new_known_iter4 = []
  936. step_order_iter4 = max_order_iter4 + 1 # 同一步骤的节点使用相同编号
  937. for node in nodes_iter3:
  938. new_node = dict(node)
  939. name = node["节点名称"]
  940. matching = [c for c in high_score_iter4 if c["节点名称"] == name]
  941. if matching and not node.get("是否已知"):
  942. new_node["是否已知"] = True
  943. new_node["发现编号"] = step_order_iter4 # 同一步骤使用相同编号
  944. new_known_iter4.append(name)
  945. nodes_iter4.append(new_node)
  946. # 创建新边(from 是数组,为每个来源创建一条边)
  947. new_edges_iter4 = []
  948. for c in high_score_iter4:
  949. target_node = node_by_name_iter4.get(c["节点名称"])
  950. if not target_node:
  951. continue
  952. for source_name in c["推导来源"]:
  953. source_node = node_by_name_iter4.get(source_name)
  954. if source_node:
  955. new_edges_iter4.append({
  956. "来源": source_node["节点ID"],
  957. "目标": target_node["节点ID"],
  958. "关系类型": "AI推导",
  959. "可能性分数": c["可能性分数"],
  960. "推理说明": c["推理说明"],
  961. })
  962. all_edges_iter4 = all_edges_iter3 + new_edges_iter4
  963. step_iter4 = {
  964. "步骤": f"迭代{iteration}-下一步分析",
  965. "输入": {
  966. "已知点": next_step_result["输入上下文"]["已知点"],
  967. "未知点": next_step_result["输入上下文"]["未知点"],
  968. },
  969. "中间结果": next_step_result["中间结果"],
  970. "输出": {
  971. "新的已知节点": new_known_iter4,
  972. "新的边": new_edges_iter4,
  973. "节点列表": nodes_iter4,
  974. "边列表": all_edges_iter4,
  975. },
  976. "摘要": {
  977. "已知点数": sum(1 for n in nodes_iter4 if n.get("是否已知")),
  978. "新已知数": len(new_known_iter4),
  979. "新边数": len(new_edges_iter4),
  980. "未知点数": sum(1 for n in nodes_iter4 if not n.get("是否已知")),
  981. "model": next_step_result.get("model"),
  982. "cache_hit": next_step_result.get("cache_hit"),
  983. },
  984. }
  985. steps.append(step_iter4)
  986. print(f" 新已知: {len(new_known_iter4)} 个")
  987. print(f" 新边: {len(new_edges_iter4)} 条")
  988. save_result(post_id, post_detail, steps, config)
  989. # 如果这轮没有新进展,停止
  990. if len(new_known_step3) == 0 and len(new_known_iter4) == 0:
  991. print(f"\n[停止] 本轮无新进展,停止循环")
  992. break
  993. # 更新状态,进入下一轮
  994. current_nodes = nodes_iter4
  995. current_edges = all_edges_iter4
  996. iteration += 1
  997. return {"帖子详情": post_detail, "步骤列表": steps}
  998. # ===== 主函数 =====
  999. async def main(
  1000. post_id: str = None,
  1001. all_posts: bool = False,
  1002. force_llm: bool = False,
  1003. max_step: int = 3,
  1004. ):
  1005. """主函数"""
  1006. _, log_url = set_trace()
  1007. config = PathConfig()
  1008. print(f"账号: {config.account_name}")
  1009. print(f"Trace URL: {log_url}")
  1010. print(f"输出目录: {OUTPUT_DIR_NAME}")
  1011. # 加载人设图谱
  1012. persona_graph_file = config.intermediate_dir / "人设图谱.json"
  1013. if not persona_graph_file.exists():
  1014. print(f"错误: 人设图谱文件不存在: {persona_graph_file}")
  1015. return
  1016. persona_graph = load_json(persona_graph_file)
  1017. print(f"人设图谱节点数: {len(persona_graph.get('nodes', {}))}")
  1018. # 获取帖子图谱文件
  1019. post_graph_files = get_post_graph_files(config)
  1020. if not post_graph_files:
  1021. print("错误: 没有找到帖子图谱文件")
  1022. return
  1023. # 确定要处理的帖子
  1024. if post_id:
  1025. target_file = next(
  1026. (f for f in post_graph_files if post_id in f.name),
  1027. None
  1028. )
  1029. if not target_file:
  1030. print(f"错误: 未找到帖子 {post_id}")
  1031. return
  1032. files_to_process = [target_file]
  1033. elif all_posts:
  1034. files_to_process = post_graph_files
  1035. else:
  1036. files_to_process = [post_graph_files[0]]
  1037. print(f"待处理帖子数: {len(files_to_process)}")
  1038. # 处理
  1039. results = []
  1040. for i, post_file in enumerate(files_to_process, 1):
  1041. print(f"\n{'#' * 60}")
  1042. print(f"# 处理帖子 {i}/{len(files_to_process)}")
  1043. print(f"{'#' * 60}")
  1044. result = await process_single_post(
  1045. post_file=post_file,
  1046. persona_graph=persona_graph,
  1047. config=config,
  1048. force_llm=force_llm,
  1049. max_step=max_step,
  1050. )
  1051. results.append(result)
  1052. # 汇总
  1053. print(f"\n{'#' * 60}")
  1054. print(f"# 完成! 共处理 {len(results)} 个帖子")
  1055. print(f"{'#' * 60}")
  1056. print(f"Trace: {log_url}")
  1057. print("\n汇总:")
  1058. for result in results:
  1059. post_id = result["帖子详情"]["postId"]
  1060. steps = result.get("步骤列表", [])
  1061. num_steps = len(steps)
  1062. if num_steps == 1:
  1063. step1_summary = steps[0].get("摘要", {})
  1064. print(f" {post_id}: 节点数={step1_summary.get('节点数', 0)} (仅数据准备)")
  1065. elif num_steps == 2:
  1066. step2_summary = steps[1].get("摘要", {})
  1067. print(f" {post_id}: 起点={step2_summary.get('新已知数', 0)} (未推导)")
  1068. elif num_steps == 3:
  1069. step3_summary = steps[2].get("摘要", {})
  1070. print(f" {post_id}: 已知={step3_summary.get('已知点数', 0)}, "
  1071. f"未知={step3_summary.get('未知点数', 0)}")
  1072. elif num_steps >= 4:
  1073. step4_summary = steps[3].get("摘要", {})
  1074. print(f" {post_id}: 已知={step4_summary.get('已知点数', 0)}, "
  1075. f"新已知={step4_summary.get('新已知数', 0)}, "
  1076. f"新边={step4_summary.get('新边数', 0)}, "
  1077. f"未知={step4_summary.get('未知点数', 0)}")
  1078. else:
  1079. print(f" {post_id}: 无步骤数据")
  1080. if __name__ == "__main__":
  1081. import argparse
  1082. parser = argparse.ArgumentParser(description="创作模式分析 V4")
  1083. parser.add_argument("--post-id", type=str, help="帖子ID")
  1084. parser.add_argument("--all-posts", action="store_true", help="处理所有帖子")
  1085. parser.add_argument("--force-llm", action="store_true", help="强制重新调用LLM(跳过LLM缓存)")
  1086. parser.add_argument("--step", type=int, default=5, choices=[1, 2, 3, 4, 5],
  1087. help="运行到第几步 (1=数据准备, 2=起点分析, 3=模式推导, 4=下一步分析, 5=完整循环)")
  1088. args = parser.parse_args()
  1089. asyncio.run(main(
  1090. post_id=args.post_id,
  1091. all_posts=args.all_posts,
  1092. force_llm=args.force_llm,
  1093. max_step=args.step,
  1094. ))