Spaces:
Runtime error
Runtime error
Update prompts.py
Browse files- prompts.py +4 -6
prompts.py
CHANGED
|
@@ -50,16 +50,14 @@ This is the current game progress:
|
|
| 50 |
{history}
|
| 51 |
"""
|
| 52 |
ADJUST_STATS="""You are a Scorer for a Role Playing Game.
|
| 53 |
-
Your duty is to adjust player stats.
|
| 54 |
-
The game is in progress.
|
| 55 |
-
The player has made a decision, and you need to adjust the players stats based on that decision.
|
| 56 |
|
| 57 |
The player has the following stats:
|
| 58 |
Health - reduced by physical damage | improved by first aid, herbs, magic, other
|
| 59 |
|
| 60 |
Instructions:
|
| 61 |
-
- Reduce the value of the player stats when negative events cause specific damage.
|
| 62 |
-
- Increase the value of the player stats when positive events cause an improvement to specific stats.
|
| 63 |
- Return this format:
|
| 64 |
Health: 98
|
| 65 |
|
|
@@ -69,7 +67,7 @@ Current Player Stats:
|
|
| 69 |
Health: {health}
|
| 70 |
**************
|
| 71 |
|
| 72 |
-
This is the current game
|
| 73 |
{history}
|
| 74 |
"""
|
| 75 |
|
|
|
|
| 50 |
{history}
|
| 51 |
"""
|
| 52 |
ADJUST_STATS="""You are a Scorer for a Role Playing Game.
|
| 53 |
+
Your duty is to adjust player stats based on the current game events.
|
|
|
|
|
|
|
| 54 |
|
| 55 |
The player has the following stats:
|
| 56 |
Health - reduced by physical damage | improved by first aid, herbs, magic, other
|
| 57 |
|
| 58 |
Instructions:
|
| 59 |
+
- Reduce the value of the player stats when negative events in the game cause specific damage.
|
| 60 |
+
- Increase the value of the player stats when positive events in the game cause an improvement to specific stats.
|
| 61 |
- Return this format:
|
| 62 |
Health: 98
|
| 63 |
|
|
|
|
| 67 |
Health: {health}
|
| 68 |
**************
|
| 69 |
|
| 70 |
+
This is the current game events:
|
| 71 |
{history}
|
| 72 |
"""
|
| 73 |
|