Skip to main content

the senate

Project description

coreason-council

The Senate of the CoReason Platform

CI License

Executive Summary

coreason-council acts as the Multi-Agent Consensus Engine ("The Jury") for the CoReason platform. While coreason-cortex executes the thinking, coreason-council validates it. Its primary mandate is to implement Ensemble Reasoning to reduce hallucination and bias through diversity of thought.

It operates on the principle that while one Large Language Model (LLM) may err, a diverse coalition of models (e.g., GPT-4, Claude, Llama) critiquing one another will converge on the truth. It is responsible for orchestrating Mixture-of-Agents (MoA) topologies, managing debate rounds, and synthesizing a final, high-confidence output from conflicting viewpoints.

Functional Philosophy: The Divergence-Convergence Loop

  1. Diversity by Design: Never rely on a single weight distribution. True consensus requires distinct "Proposers" (different models or personas).
  2. Blind Independence: Initial proposals are generated in isolation to prevent "Anchoring Bias" (groupthink).
  3. Adversarial Review: Agreement is cheap; critique is valuable. The system actively seeks dissent before accepting a consensus.
  4. Semantic Aggregation: Do not just "vote" (A vs B). The final output is a synthesis that incorporates the best nuance from all perspectives.

Core Architecture

The Council consists of four primary components:

1. The Chamber Speaker (The Orchestrator)

The central manager that convenes the council. It manages the lifecycle of a "Session", selects the appropriate "Board of Advisors" (Personas) based on the query, and orchestrates the debate phases.

2. The Proposers (The Voices)

Independent workers that generate initial answers. They are wrapped in specific system prompts (Personas) to enforce diverse perspectives (e.g., "The Skeptic", "The Architect", "The Oncologist"). They operate in isolation during the opening phase.

3. The Dissenter (The Critic)

A specialized role focused on Falsification. It scans proposals for logical fallacies, data inconsistencies, or hallucinations. It calculates the Semantic Entropy (disagreement score) between proposals. High entropy triggers debate rounds; low entropy allows for immediate aggregation.

4. The Aggregator (The Judge)

The synthesis engine that creates the final "Verdict". It takes the proposals and critiques to generate a new answer that resolves the conflict, including a "Consensus Confidence Score" (0.0 - 1.0).

Installation

Prerequisites

  • Python 3.12+
  • Poetry

Steps

  1. Clone the repository:
    git clone https://github.com/CoReason-AI/coreason_council.git
    cd coreason_council
    
  2. Install dependencies:
    poetry install
    

Configuration

To use the LLM capabilities (e.g., OpenAI models), you must set the following environment variable:

export OPENAI_API_KEY="your-api-key-here"

Usage

CLI Usage

You can run a council session directly from the command line:

# Run with Mock agents (default, no API key needed)
poetry run council "What is the best way to handle concurrent tasks in Python?"

# Run with Real LLM agents (requires OPENAI_API_KEY)
poetry run council --llm "Explain the concept of Semantic Entropy."

# View help and options
poetry run council --help

Options:

  • --llm: Use real LLM agents (OpenAI) instead of Mock agents.
  • --max-rounds <int>: Maximum number of debate rounds (default: 3).
  • --entropy-threshold <float>: Entropy threshold for consensus (default: 0.1).
  • --max-budget <int>: Maximum budget in operations (default: 100).
  • --show-trace: Display the full debate transcript.

Programmatic Usage

You can integrate coreason-council into your own Python applications:

import asyncio
from coreason_council.core.speaker import ChamberSpeaker
from coreason_council.core.panel_selector import PanelSelector
from coreason_council.core.dissenter import JaccardDissenter
from coreason_council.core.aggregator import MockAggregator
from coreason_council.core.budget import SimpleBudgetManager

async def main():
    query = "Is 50mg of Aspirin safe for children?"

    # 1. Select Panel
    panel_selector = PanelSelector() # Defaults to MockProposers
    proposers, personas = panel_selector.select_panel(query)

    # 2. Initialize Components
    dissenter = JaccardDissenter()
    aggregator = MockAggregator()
    budget_manager = SimpleBudgetManager()

    # 3. Initialize Speaker
    speaker = ChamberSpeaker(
        proposers=proposers,
        personas=personas,
        dissenter=dissenter,
        aggregator=aggregator,
        budget_manager=budget_manager,
    )

    # 4. Resolve Query
    verdict, trace = await speaker.resolve_query(query)

    print(f"Verdict: {verdict.content}")
    print(f"Confidence: {verdict.confidence_score}")

if __name__ == "__main__":
    asyncio.run(main())

Development

  • Run Linter (Ruff) & Type Checker (MyPy):

    poetry run pre-commit run --all-files
    
  • Run Tests:

    poetry run pytest
    

License

This project is licensed under the Prosperity Public License 3.0. See the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

coreason_council-0.3.0.tar.gz (25.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

coreason_council-0.3.0-py3-none-any.whl (39.2 kB view details)

Uploaded Python 3

File details

Details for the file coreason_council-0.3.0.tar.gz.

File metadata

  • Download URL: coreason_council-0.3.0.tar.gz
  • Upload date:
  • Size: 25.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for coreason_council-0.3.0.tar.gz
Algorithm Hash digest
SHA256 21829fe72b3c7d1a0bdfb81963e4bdd90d521d8a787652289b67bc4f8d3db56a
MD5 35aa5a5693b81ee168993494d2abbf9e
BLAKE2b-256 8cee6a2255e16cba4714cd6d018587243ef169b2efca0a81c15f2b6938e11fa6

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreason_council-0.3.0.tar.gz:

Publisher: publish.yml on CoReason-AI/coreason-council

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file coreason_council-0.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for coreason_council-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 35dfe8be8ca9e7b00aaba3ca5518d408779873e87eb247c81747ac4fe8b3e1ea
MD5 9a2d8ddf57c78aa5bd3603b6cd89023d
BLAKE2b-256 27e625c88f532da8495172d1480d00c3ec81f6df9d4ea6c83413102f25e1ef22

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreason_council-0.3.0-py3-none-any.whl:

Publisher: publish.yml on CoReason-AI/coreason-council

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page