{{ block title }}Instructions{{ endblock }} {{ block content }} {# === SECTION FOR JUDGES === #} {% if is_judge %}
Your Role: Controller

You have been assigned the role of Controller. You do not participate in the game itself (you do not contribute or receive payoffs).

Instead, your task is to oversee the contributions of the participants. In each round, participants are randomly rematched into groups of 4 and play a the same game where they contribute. You might supervise multiple groups of 4 participants each round, depending on the total number of participants in the experiment.

{% if treatment == 'human_judge' %}

Your Task

After participants make their contributions, you will see a list of all players that are assigned to you, organized by their groups. You will see how much each player contributed.

You can assign Deduction Points (0 to 5) to any player. Assigning deduction points has no cost to you.

{% elif treatment == 'humanAI_judge' %}

Your Task

After participants contribute, a predefined algorithmic rule analyzes contributions and suggests deduction points for each player.

You will see these suggestions. You can accept them or adjust to any value between 0-5 points. Assigning deductions has no cost to you.

{% elif treatment == 'humanAI_judge_llm' %}

Your Task

After participants contribute, ChatGPT analyzes contributions and suggests deduction points for each player using this prompt:

ChatGPT Prompt
You are the controller in a public goods game. Decide deduction points for each listed player. Deduction points must be integers from 0 to 5 inclusive. Use the round number, each player contribution, and the public pool totals.

You will see ChatGPT's suggestions. You can accept them or adjust to any value between 0-5 points. Assigning deductions has no cost to you.

{% endif %}

Effect of Punishment

When you assign deduction points to a player:

Your own payoff depends on the earnings of all participants assigned to you (before deduction).

{# === SECTION FOR REGULAR PLAYERS === #} {% else %}

You will play {{ C.NUM_ROUNDS }} rounds of the same game. In each round, you will be randomly rematched into groups of 4.

Your payoff from the game is:

Initial Endowment − Your Contribution + {{ mpcr }} × (Sum of Group Contributions)

{# Treatment-specific punishment info #} {% if treatment == 'human_judge' %}

Control Stage

There is a Controller assigned to your group.

After you contribute, the controller sees your contribution and can assign you 0 to 5 deduction points.

{% elif treatment == 'AI_judge' %}

Control Stage

There is a predefined algorithmic rule

After you contribute, the predefined algorithmic rule automatically assigns deduction points (0 to 5).

{% elif treatment == 'AI_judge_llm' %}

Control Stage

There is ChatGPT Controller.

ChatGPT automatically assigns deduction points (0-5) using this prompt:

ChatGPT Prompt
You are the controller in a public goods game. Decide deduction points for each listed player. Deduction points must be integers from 0 to 5 inclusive. Use the round number, each player contribution, and the public pool totals.
{% elif treatment == 'humanAI_judge' %}

Control Stage

There is a Controller assisted by an predefined algorithmic rule.

After you contribute, the predefined algorithmic rule automatically assigns deduction points, and the Human Controller can review and adjust these points (0 to 5).

{% elif treatment == 'humanAI_judge_llm' %}

Control Stage

There is a Controller assisted by ChatGPT.

After you contribute, ChatGPT automatically assigns deduction points, and the Human Controller can review and adjust these points (0 to 5). This is the prompt of ChatGPT:

ChatGPT Prompt
You are the controller in a public goods game. Decide deduction points for each listed player. Deduction points must be integers from 0 to 5 inclusive. Use the round number, each player contribution, and the public pool totals.
{% endif %} {# Common punishment cost explanation for all judge treatments #} {% if treatment != 'no_judge' %}

Cost of deduction:

Final Payoff = Initial Payoff − Your Deduction Received − (Total Group Deduction / 4)

{% endif %} {% endif %}
{{ next_button }} {{ endblock }}