AI_writing/pdfs/_legacy_notes_backup_2026-08-02/41_creagentive_精读.md

一句话总结:面向连载小说/多幕剧本这类超长、多体裁创作的 agent 引擎。核心是一个与体裁无关的"Story Prototype"——用知识图谱把人物/事件/环境编成语义三元组,把"故事逻辑"和"文体呈现"解耦;再用三阶段 agent 工作流(初始化骨架→多智能体对话实例化→写作)产出多体裁文本。能以通用基座低成本(每百章 <$1)生成上千章,质量稳定、逼近人类小说。

TL;DR 速览

tags: [论文精读, 多智能体, 超长连载, 知识图谱, 多体裁, 逻辑文体解耦] related: [[10_storywriter]], [[02_from_personas_to_plot_magnet]], [[26_cat_llm]], [[03_dome]]


要点

[!PDF|] 41_creagentive.pdf, p.1

genre-agnostic, knowledge graph-based narrative representation that decouples story logic

[!tip] "逻辑与文体解耦"为什么是好架构?(工程启示) 传统方法把"写什么"与"怎么写"耦合,导致换体裁就要重建流程。CreAgentive 用 KG 保存人物、事件和环境的纯逻辑,再在最后一步渲染文体,因此同一故事逻辑可生成小说、剧本、播客或诗歌。与 [[26_cat_llm]] 的文风量化注入形成互补。

[!PDF|] 41_creagentive.pdf, p.1

produce multi-genre text with advanced structures such as retrospection and foreshadowing

41_creagentive.pdf, p.4

[!note] 图 1:CreAgentive 三阶段工作流(坐标启发式需微调)——Initialization → Generation(多智能体对话实例化 Prototype)→ Writing(多体裁渲染)。

[!PDF|] 41_creagentive.pdf, p.1

generates thousands of chapters with stable quality and low cost (less than $1 per 100 chapters

[!tip] Table 1 的体裁尺度参考 论文列出各体裁典型长度:网文 2M–8M+、推理小说 50k–100k、轻小说每卷 50k–100k、播客剧每季 80k–150k、短剧本 60k–120k、游戏主线 100k–300k。这为不同体裁的长度规模提供了工程参考。


个人思考