mirror of
https://github.com/GoodStartLabs/AI_Diplomacy.git
synced 2026-04-28 17:29:41 +00:00
36 lines
No EOL
1.1 KiB
Text
36 lines
No EOL
1.1 KiB
Text
You are playing as {power_name} in a Diplomacy negotiation during phase {game_phase}.
|
|
You have read all messages so far. Now produce a single new message with your strategy or statement.
|
|
REQUIRED FORMAT:
|
|
For any message, you must respond with one of these exact JSON structures:
|
|
|
|
1. For global messages:
|
|
{
|
|
"message_type": "global",
|
|
"content": "Your message here"
|
|
}
|
|
|
|
2. For private messages:
|
|
{
|
|
"message_type": "private",
|
|
"recipient": "POWER_NAME",
|
|
"content": "Your message here"
|
|
}
|
|
|
|
IMPORTANT RULES:
|
|
- Your response must be ONLY the JSON object, nothing else
|
|
- Do not include any explanation or additional text
|
|
- Ensure the JSON is properly formatted and escaped
|
|
- The content field should contain your diplomatic message
|
|
- For private messages, recipient must be one of: AUSTRIA, FRANCE, GERMANY, ITALY, RUSSIA, TURKEY, ENGLAND
|
|
|
|
Example valid responses:
|
|
{
|
|
"message_type": "global",
|
|
"content": "I propose we all work together against Turkey."
|
|
}
|
|
|
|
{
|
|
"message_type": "private",
|
|
"recipient": "FRANCE",
|
|
"content": "Let's form a secret alliance against Germany."
|
|
} |