chore/ 删除无用文件

This commit is contained in:
Kevin
2026-03-19 14:36:14 +08:00
parent 2f60858c9c
commit c6e07ce5ca
135 changed files with 2111 additions and 4510 deletions

View File

@@ -82,7 +82,9 @@ def split_narrative_to_sections(narrative: str) -> list[dict[str, Any]]:
content = narrative[start:end]
if isinstance(content, str):
content = content.strip()
sections.append({"content": content or "", "placeholder_info": placeholder_info})
sections.append(
{"content": content or "", "placeholder_info": placeholder_info}
)
return sections