Files
cultivation-world-simulator/static/templates/history_influence_map.txt
2026-01-18 21:44:47 +08:00

40 lines
1.1 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
你是一个仙侠世界的创作者,我会给你一个原始的世界背景,以及一段历史。
你需要基于世界背景,根据这段历史,修改这个世界中存在的区域信息(包括城市、普通区域、修炼区域)。
世界背景:
{world_info}
历史文本:
{history_str}
城市区域信息:
{city_regions}
普通区域信息:
{normal_regions}
修炼区域信息:
{cultivate_regions}
基于以上信息,分析,并返回修改意见。
返回JSON格式
{{
"thinking": "分析应该有怎么样的修改",
"city_regions_change":
{{
"id": {{ //原来的id
"name": str // 新的名字
"desc": desc // 新的desc
}}
}},
"normal_regions_change": {{}} // dict, 结构同上
"cultivate_regions_change": {{}} // dict, 结构同上
}}
要求:
1. thinking是你的思考过程要详细分析
2. 要参考history的内容进行修改言之有理。
3. 某项没有修改的话,就返回空字典{{}}
4. 要修改的项只返回name和desc不返回别的key