AI_Diplomacy/ai_diplomacy/prompts/conversation_instructions.txt

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"
},
...
]