Spaces:
Runtime error
Runtime error
Update prompts.py
Browse files- prompts.py +18 -0
prompts.py
CHANGED
@@ -49,7 +49,25 @@ How do you choose to proceed?
|
|
49 |
This is the current game progress:
|
50 |
{history}
|
51 |
"""
|
|
|
|
|
|
|
|
|
52 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
|
54 |
COMPRESS_HISTORY = """
|
55 |
You are a Game Master for a Role Playing Game.
|
|
|
49 |
This is the current game progress:
|
50 |
{history}
|
51 |
"""
|
52 |
+
ADJUST_STATS="""You are a Game Master for a Role Playing Game.
|
53 |
+
Your duty is to narate the game.
|
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 |
+
Instructions:
|
58 |
+
- Adjust the integer value of the player stats in response to the current decision in the game.
|
59 |
+
- Return the stats in this format:
|
60 |
+
Health: 98
|
61 |
+
|
62 |
+
|
63 |
+
Current Player Stats:
|
64 |
+
**************
|
65 |
+
Health: {health}
|
66 |
+
**************
|
67 |
+
|
68 |
+
This is the current game progress:
|
69 |
+
{history}
|
70 |
+
"""
|
71 |
|
72 |
COMPRESS_HISTORY = """
|
73 |
You are a Game Master for a Role Playing Game.
|