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

View File

@@ -0,0 +1,21 @@
# Generator
## Definition
In the Adversarial Debate multi-agent pattern, the Generator is the agent that proposes an initial plan, idea, or solution. It presents its work to the Critic for evaluation.
## Role in Adversarial Debate
- Proposes: "Here is my plan"
- Presents initial output for criticism
- Receives critique and revises accordingly
- Ultimately responsible for final output (after debate)
## Key Properties
- Should be a capable model but may have blind spots
- Can be the same model family as Critic and Judge but different instance recommended
- Does not self-correct without external pressure (hence needs Critic)
## Related Concepts
- [[Multi-Agent Adversarial Debate]]
- [[Critic]]
- [[Judge]]
- [[Sycophancy]]