GAMABench: a dynamic multi‑agent game benchmark that reveals LLMs' weak generalization and prompt sensitivity

March 18, 20247 min

Overview

Production Readiness

0.6

Novelty Score

0.6

Cost Impact Score

0.4

Citation Count

8

Authors

Jen-tse Huang, Eric John Li, Man Ho Lam, Tian Liang, Wenxuan Wang, Youliang Yuan, Wenxiang Jiao, Xing Wang, Zhaopeng Tu, Michael R. Lyu

Links

Abstract / PDF

Why It Matters For Business

GAMABench exposes how LLMs handle multi‑agent strategic choices, revealing leaderboard gaps and prompt sensitivities that affect any product using LLMs for negotiation, coordination, or recommendation.

Summary TLDR

The authors introduce GAMABench (γ-Bench), a dynamic multi-player, multi-round benchmark of eight classic game‑theory scenarios to measure LLMs' decision-making. They test 13 models (closed- and open-source) and show: Gemini-1.5-Pro leads the leaderboard (69.8/100); GPT-3.5 is robust to sampling and temperature but generalizes poorly in some games; simple prompts like Chain‑of‑Thought (CoT) improve scores substantially (45.9 → 57.9 for GPT-3.5). The code and results are public.

Problem Statement

Existing LLM game evaluations focus on two-player or static settings that risk test-set leakage. We need a dynamic multi-player benchmark to quantify LLM decision-making, robustness, and generalizability in richer strategic environments.

Main Contribution

A dynamic benchmark (GAMABench) with eight classical games in multi-player, multi-round, multi-action settings to reduce static leakage.

A scoring scheme that normalizes game outcomes to [0,100] and adapts to game parameters for fair comparison.

A large evaluation across 13 LLMs showing model differences, sensitivity to prompts/temperature, and the benefit of simple prompting tricks like CoT.

Key Findings

Closed- and open-source leaderboard: Gemini-1.5-Pro performs best.

NumbersGemini-1.5-Pro: 69.8 /100; LLaMA-3.1-70B: 65.9; Mixtral-8x22B: 62.4

GPT-3.5 (0125) shows robustness across runs and temperatures but poor generalization on some games.

NumbersGPT-3.5 overall 45.9; temperature variance overall 3.4 points

Chain-of-Thought (CoT) prompting yields large gains on decision tasks.

NumbersGPT-3.5 overall: 45.9 → 57.9 (gain 12.0)

Prompt wording and template can drastically change performance in certain games.

NumbersHigh per-game prompt variance: Public Goods 11.5, Diner's Dilemma 23.7, Pirate 14.7 (std devs)

Some games show poor model generalizability and apparent randomness.

NumbersLow generalizability for El Farol Bar and Public Goods Game (models fail across varied settings)

Models can learn from past rounds but still fail at complex sequential strategies.

NumbersGPT-3.5 learns across rounds (scores increase) but scores low on Battle Royale (20.0) and mixed on Pirate Game (80.6)

Results

Top leaderboard scores

ValueGemini-1.5-Pro 69.8 /100; LLaMA-3.1-70B 65.9; Mixtral-8x22B 62.4

GPT-3.5 (0125) overall

Value45.9 /100

CoT prompt improvement (GPT-3.5)

ValueOverall 45.9 → 57.9 (gain 12.0)

BaselineDefault prompt

Temperature sensitivity (overall)

ValueStd dev 3.4 points across temperatures 0.0–1.0

Who Should Care

What To Try In 7 Days

Run GAMABench on your candidate LLMs to get a multi-agent baseline.

Add a short CoT prompt ('Let's think step by step') and compare scores.

Test multiple prompt templates and record variance per task before deployment.

Agent Features

Memory

  • short-term historical feedback (per-round history)

Planning

  • short-horizon adaptation (learns from rounds)
  • limited long-horizon tactical planning (sequential games weak)

Frameworks

  • persona prompting
  • Chain-of-Thought prompting

Is Agentic

true

Architectures

  • LLM-driven multi-agent

Collaboration

  • can spontaneously cooperate without explicit comms

Reproducibility

Code Available

Data Available

Open Source Status

  • partial

Risks & Boundaries

Limitations

  • Leaderboard covers 13 models but excludes some prominent LLMs (e.g., Claude-3.5).
  • All games use ten agents copied from the same model; cross-model multi-agent matches are left for future work.
  • Games were limited to 20 rounds and agents were informed of that horizon, which can alter endgame behavior.

When Not To Use

  • Not suited for single-agent or perception-only tasks.
  • Not a substitute for domain-specific safety or factuality tests.
  • Avoid using it as the only test when you need long-horizon planning beyond 20 rounds.

Failure Modes

  • Judge bias and prompt wording strongly affect outcomes in social games.
  • Training data leakage may still inflate performance on classical vanilla settings.
  • Risk-averse alignment tuning can mask selfish strategies or change behavior under jailbreak.

Core Entities

Models

  • GPT-3.5-0613
  • GPT-3.5-1106
  • GPT-3.5-0125
  • GPT-4-0125
  • GPT-4o-0806
  • Gemini-1.0-Pro
  • Gemini-1.5-Pro
  • LLaMA-3.1-8B
  • LLaMA-3.1-70B
  • LLaMA-3.1-405B
  • Mixtral-8x7B
  • Mixtral-8x22B
  • Qwen-2-72B

Metrics

  • Normalized score (0-100)
  • Per-game scores
  • Std dev across runs
  • Prompt/template sensitivity
  • Temperature sensitivity

Benchmarks

  • GAMABench (γ-Bench)