Tournament-based AI decision synthesis framework where models compete and critique each other to extract maximum knowledge.
pip install certamen-core# Auto-discover Ollama models
make discover-ollama
# Run tournament
certamen --config config.ymlfrom certamen import Certamen
async def main():
arb = await Certamen.from_settings({
"models": {
"gpt": {"provider": "openai", "name": "gpt-4o"},
"claude": {"provider": "anthropic", "name": "claude-sonnet-4-20250514"},
}
})
result, metrics = await arb.run_tournament("What is the best approach to...")
print(result)See CLAUDE.md for detailed architecture and development guidelines.