mirror of
https://github.com/GoodStartLabs/AI_Diplomacy.git
synced 2026-04-19 12:58:09 +00:00
28 lines
No EOL
715 B
Text
28 lines
No EOL
715 B
Text
NEGOTIATION MESSAGES
|
|
|
|
TASK
|
|
Generate one or more (preferably several) strategic messages to advance your interests.
|
|
Always prioritize responding to the messages in the "RECENT MESSAGES REQUIRING YOUR ATTENTION" section.
|
|
Maintain consistent conversation threads (unless you are choosing to ignore).
|
|
|
|
RESPONSE FORMAT
|
|
Return ONLY a single JSON array containing one or more message objects, remembering to properly escape strings:
|
|
|
|
Required JSON structure:
|
|
[
|
|
{
|
|
"message_type": "global" or "private",
|
|
"content": "Your message text"
|
|
},
|
|
...
|
|
]
|
|
|
|
For private messages, also include the recipient:
|
|
[
|
|
{
|
|
"message_type": "private",
|
|
"recipient": "POWER_NAME",
|
|
"content": "Your message text"
|
|
},
|
|
...
|
|
] |