2026-03-19 10:38:11 +08:00
|
|
|
|
"""
|
|
|
|
|
|
PlaceholderInjectAgent:对 narrative 做占位符模板注入。
|
|
|
|
|
|
对应现有逻辑:inject_image_placeholder_template
|
|
|
|
|
|
纯函数式,无 LLM 调用。
|
|
|
|
|
|
"""
|
2026-03-19 10:54:48 +08:00
|
|
|
|
from app.agents.memoir.prompts import inject_image_placeholder_template
|
2026-03-19 10:38:11 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def inject_placeholders(content: str) -> str:
|
|
|
|
|
|
"""
|
|
|
|
|
|
对章节正文做占位符处理:匹配所有图片占位符,拼上固定模板。
|
|
|
|
|
|
与 inject_image_placeholder_template 行为一致。
|
|
|
|
|
|
"""
|
|
|
|
|
|
return inject_image_placeholder_template(content)
|