Files
nexus/wiki/entities/Generator.md

21 lines
732 B
Markdown

# 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]]