Evaluates a multi-agent consensus framework's ability to mitigate hallucinations and biases in large language models compared to individual frontier models. It probes factual accuracy, truthfulness, informativeness, and consistency across diverse knowledge domains and varying reasoning complexities. Use when the user wants to benchmark on HaluEval, TruthfulQA, Multi-Domain Reasoning, or asks about evaluating this task. Reports Hallucination Rate.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill council-mode-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Council Mode Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-council-mode-eval)More formats (shields.io, HTML) on the badges page.
---
name: council-mode-eval
description: Evaluates a multi-agent consensus framework's ability to mitigate hallucinations and biases in large language models compared to individual frontier models. It probes factual accuracy, truthfulness, informativeness, and consistency across diverse knowledge domains and varying reasoning complexities. Use when the user wants to benchmark on HaluEval, TruthfulQA, Multi-Domain Reasoning, or asks about evaluating this task. Reports Hallucination Rate.
metadata:
skill_kind: dataset_eval
source_arxiv: 2604.02923
bibtex_key: wu2026councilmode
confidence: high
---
# council-mode-eval
> Council Mode: Mitigating Hallucination and Bias in LLMs via Multi-Agent Consensus — Shuai Wu et al. (2026) (arXiv:2604.02923, 2026)
## What this evaluates
Evaluates a multi-agent consensus framework's ability to mitigate hallucinations and biases in large language models compared to individual frontier models. It probes factual accuracy, truthfulness, informativeness, and consistency across diverse knowledge domains and varying reasoning complexities.
## Datasets
- **HaluEval** — total ?; splits: test (-1)
- **TruthfulQA** — total ?; splits: test (-1)
- **Multi-Domain Reasoning** — total 500; splits: test (500)
## Metrics
- `Hallucination Rate` **(primary)** — range: percent
- Percentage of generated claims that are factually incorrect. Calculated as (number of incorrect claims / total claims) * 100.
- `Truthful Score` — range: percent
- Percentage of answers rated as truthful by the TruthfulQA evaluation framework.
- `Informative Score` — range: percent
- Percentage of answers that are both truthful and informative.
- `Accuracy` — range: percent
- Percentage of correct answers on the multi-domain reasoning benchmark.
- `Bias Variance` — range: other
- Variance ($\sigma^{2}$) of performance scores across six knowledge domains, measuring consistency.
## Input / output format
**Input**: Natural language queries/prompts from benchmark datasets, routed through a triage classifier to heterogeneous expert models.
**Output**: Synthesized response generated by the multi-agent consensus framework, or individual model outputs for baselines.
## Scoring recipe
```python
def compute_hallucination_rate(predictions, gold_labels):
incorrect = 0
total = 0
for pred, gold in zip(predictions, gold_labels):
if not is_factually_correct(pred, gold):
incorrect += 1
total += 1
return (incorrect / total) * 100 if total > 0 else 0.0
```
## Common pitfalls
- Using external leaderboard scores instead of running unified evaluation scripts via official APIs, which breaks fair comparison.
- Ignoring task complexity scaling; accuracy degrades non-linearly with reasoning steps, so reporting only average accuracy masks performance drops on hard prompts.
- Evaluating bias variance without domain stratification; the benchmark explicitly spans six domains to measure consistency.
## Evidence (verbatim from paper)
> We report: (1) Hallucination Rate (%): the percentage of generated claims that are factually incorrect; (2) Truthful Score (%): the percentage of answers rated as truthful by the TruthfulQA evaluation framework; (3) Informative Score (%): the percentage of answers that are both truthful and informative; (4) Accuracy (%): correctness on the multi-domain reasoning benchmark; and (5) Bias Variance ($\sigma^{2}$): the variance of performance scores across domains, measuring consistency.
## Citation
```bibtex
@misc{wu2026councilmode,
title={Council Mode: Mitigating Hallucination and Bias in LLMs via Multi-Agent Consensus},
author={Shuai Wu et al. (2026)},
year={2026},
note={arXiv:2604.02923}
}
```
- arXiv: 2604.02923
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!