@@ -193,9 +193,9 @@ prompts:
193
193
{{name}} will happen in {{turns}} turn
194
194
195
195
# agent stuff
196
- world_agent_backstory : |
197
- {{ character.backstory }}
198
196
world_agent_backstory_other : |
197
+ {{ character.backstory }}
198
+ world_agent_backstory : |
199
199
You are {{character | name}}, a character in a text-based role-playing game. Your character's backstory is:
200
200
{{ character.backstory }}
201
201
Explore the world, interact with other characters, and complete quests to advance the story.
@@ -218,11 +218,11 @@ prompts:
218
218
Generating a {{theme}} with {{room_count}} rooms
219
219
220
220
world_generate_room_name : |
221
- Generate one room, area, or location that would make sense in the world of {{world_theme}}.
221
+ Generate one room, area, or location that would make sense in the world of {{world_theme}}. {{ additional_prompt | punctuate }}
222
222
Only respond with the room name in title case, do not include the description or any other text.
223
223
Do not prefix the name with "the", do not wrap it in quotes. The existing rooms are: {{existing_rooms}}
224
224
world_generate_room_description : |
225
- Generate a detailed description of the {{name}} area. What does it look like?
225
+ Generate a detailed description of the {{name}} area. {{ additional_prompt | punctuate }} What does it look like?
226
226
What does it smell like? What can be seen or heard?
227
227
world_generate_room_broadcast_room : |
228
228
Generating room: {{name}}
@@ -356,6 +356,11 @@ prompts:
356
356
world_simulate_character_action_error_json : |
357
357
Your last reply was not a valid action or the action you tried to use does not exist. Please try again, being
358
358
careful to reply with a valid function call in JSON format. The available actions are: {{actions}}.
359
+ world_simulate_character_action_error_action : |
360
+ You cannot use the '{{action}}' action because {{message | punctuate}}
361
+ world_simulate_character_action_error_unknown_tool : |
362
+ That action is not available during the action phase or it does not exist. Please try again using a different
363
+ action. The available actions are: {{actions}}.
359
364
360
365
world_simulate_character_planning : |
361
366
You are about to start your turn. Plan your next action carefully. Take notes and schedule events to help keep track of your goals.
@@ -379,6 +384,11 @@ prompts:
379
384
You have no upcoming events.
380
385
world_simulate_character_planning_events_item : |
381
386
{{event.name}} in {{turns}} turns
387
+ world_simulate_character_planning_error_action : |
388
+ You cannot perform the '{{action}}' action because {{message | punctuate}}
382
389
world_simulate_character_planning_error_json : |
383
390
Your last reply was not a valid action or the action you tried to use does not exist. Please try again, being
384
- careful to reply with a valid function call in JSON format. The available actions are: {{actions}}.
391
+ careful to reply with a valid function call in JSON format. The available actions are: {{actions}}.
392
+ world_simulate_character_planning_error_unknown_tool : |
393
+ That action is not available during the planning phase or it does not exist. Please try again using a different
394
+ action. The available actions are: {{actions}}.
0 commit comments