{{ block title }}Task Briefing{{ endblock }} {{ block content }}
Round 1 of 5 — Pre-task Briefing. Please read the following information carefully before the experiment begins.
Scenario

Your company is selecting a strategic supplier for a key component. You must choose one supplier from six candidates (A, B, C, D, E, F). The decision involves an AI recommendation system followed by a two-stage human review: the Purchasing Analyst (PA) evaluates operational criteria, and the Sustainability Analyst (SA) makes the final decision on CSR factors.

This process repeats for 5 rounds, each representing a new procurement cycle with the same supplier pool.

📌 Note on the AI system: Like all AI systems, this tool may not always produce the optimal outcome. Your judgment as a team matters — please evaluate the AI's recommendation critically rather than accepting it automatically.
{% if is_pa %}
Supplier Performance — Purchasing Criteria (Min-Max Normalised, 0–1)
{% for row in pa_rows %} {% endfor %}
Supplier Cost
w = 0.30
Delivery
w = 0.40
Innovation
w = 0.30
{{ row.supplier }} {{ row.cost }} {{ row.delivery }} {{ row.innovation }}

Higher scores are better for all criteria. Scores are normalised on a 0–1 scale.

Your Task — Purchasing Analyst
  1. You will first see the AI system's recommendation and its reasoning.
  2. Review the AI's rationale and the supplier purchasing scores.
  3. Submit your own supplier recommendation.
  4. Your choice is passed to the Sustainability Analyst for the final decision.
{% else %}
Supplier Performance — CSR Criteria (Min-Max Normalised, 0–1)
{% for row in sa_rows %} {% endfor %}
Supplier Human Rights
w = 0.333
Local
w = 0.333
Carbon
w = 0.334
{{ row.supplier }} {{ row.human_rights }} {{ row.local }} {{ row.carbon }}

Higher scores are better for all criteria. Carbon score is inverted: higher = lower carbon footprint.

Your Task — Sustainability Analyst
  1. You will see the Purchasing Analyst's supplier choice.
  2. Evaluate it against the CSR scores above.
  3. Make the final team decision by selecting a supplier.
{% endif %}
Please do not communicate with your partner outside of the information shown on your screen during the experiment.
{{ next_button }}
{{ endblock }}