wiki-ingest: Multi-Agent System Reliability

This commit is contained in:
2026-04-16 03:43:32 +08:00
parent 3db8f83ca3
commit 821be5e431
72 changed files with 2479 additions and 101 deletions

21
wiki/entities/Critic.md Normal file
View File

@@ -0,0 +1,21 @@
# Critic
## Definition
In the Adversarial Debate multi-agent pattern, the Critic acts as a devil's advocate, attacking the Generator's proposals with specific objections. The role simulates the fear of rejection or being wrong that humans experience but LLMs do not.
## Role in Adversarial Debate
- Attacks: "Here are 3 reasons why that plan sucks"
- Provides structured opposition to proposed ideas
- Forces Generator to confront weaknesses
- Works with Judge to iterate toward better solutions
## Key Properties
- Simulates human fear of being wrong (which LLMs don't naturally have)
- Must use different model than Generator for genuine opposition
- Provides concrete, numbered objections for Generator to address
## Related Concepts
- [[Multi-Agent Adversarial Debate]]
- [[Generator]]
- [[Judge]]
- [[Sycophancy]]