forked from clp-research/clembench
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
97 additions
and
86 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
We are currently in this room. Please help me with the following task. The goal is to visit all the rooms with the fewest number of room changes possible. In each room you need to decide the direction to go in. Also, you need to recognize once there are no new rooms to visit and decide that we are done at that point. Please give your answer in the following format: “GO: DIRECTION”: to step into a new room, replace DIRECTION with one of [north, south, east, west]. “DONE”: This will end the game and we will be graded. | ||
We are currently in this room. Please help me with the following task. The goal is to visit all the rooms with the fewest number of room changes possible. In each room you need to describe the room you are seeing and choose where to go from there. Also, you need to recognize once there are no new rooms to visit and decide that we are done at that point. Please give your answer in the following format: "{"description": "<room description>", "action": "<action>"}". Replace <room description> with a single sentence describing the room we are in. To move to a nieghboring room, replace <action> with "GO: DIRECTION" where DIRECTION can be one of [north, south, east, west]. To stop the exploration replace <action> with "DONE". | ||
Let us start. | ||
From this room we can go in the following directions: $INITIAL_DIRECTIONS$. What should we do? | ||
We are now in this room. From here we can go: $INITIAL_DIRECTIONS$. What should we do? |
11 changes: 11 additions & 0 deletions
11
games/mm_mapworld/resources/initial_prompts/prompt_one_shot.template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
We are currently in this room. Please help me with the following task. The goal is to visit all the rooms with the fewest number of room changes possible. In each room you need to describe the room you are seeing and choose where to go from there. Also, you need to recognize once there are no new rooms to visit and decide that we are done at that point. Please give your answer in the following format: “{"description": "<room description>", "action": "<action>"}”. Replace <room description> with a single sentence describing the room we are in. To move to a nieghboring room, replace <action> with "GO: DIRECTION" where DIRECTION can be one of [north, south, east, west]. To stop the exploration replace <action> with "DONE". | ||
Here is an example: | ||
We are now in this room. From here we can go: north, west. What should we do? | ||
{"description": "We are in a kitchen with a red fridge.", "action": "GO: north"} | ||
We are now in this room. From here we can go: south, east. What should we do? | ||
{"description": "We are in a living room with a couch and a tv.", "action": "GO: east"} | ||
... | ||
We are now in this room. From here we can go: south, east. What should we do? | ||
{"description": "We are in a bathroom", "action": "DONE"} | ||
Let us start. | ||
We are now in this room. From here we can go: $INITIAL_DIRECTIONS$. What should we do? |
2 changes: 1 addition & 1 deletion
2
games/mm_mapworld/resources/later_prompts/invalid_move.template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
The move was invalid and we are still in this room <image>. From here we can go: $DIRECTIONS$. What should we do? | ||
The move was invalid and we are still in this room. From here we can go: $DIRECTIONS$. What should we do? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
It seems like we are going back and forth between two rooms. If you want to stop exploring simply respond with "DONE". | ||
It seems like we are going back and forth between two rooms. To stop exploring choose "DONE" as our next action. |
2 changes: 1 addition & 1 deletion
2
games/mm_mapworld/resources/later_prompts/successful_move.template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
We are now in this room <image>. From here we can go: $DIRECTIONS$. What should we do? | ||
We are now in this room. From here we can go: $DIRECTIONS$. What should we do? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
We have been exploring for a while now. If you think we have seen most rooms simply respond with "DONE". | ||
We have been exploring for a while now. To stop exploring choose "DONE" as our next action. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Please only give your answer in the given format so I can understand it. To move to a nieghboring room answer with "GO: <direction>" and replace <direction> with one of the available directions which are: $DIRECTIONS$. If you think there are no more rooms we need to visit, simply anser with "DONE". What should we do? | ||
Please only give your answer in the provided format so I can understand it. The format is {"description": "<room description>", "action": "<action>"}". Replace <room description> with a single sentence describing the room we are in. To move to a nieghboring room, replace <action> with "GO: DIRECTION" where DIRECTION can be one of [north, south, east, west]. To stop the exploration replace <action> with "DONE". What should we do? |