15 lines
456 B
Python
15 lines
456 B
Python
"""
|
|
Orchestrated Discussions - Multi-agent AI discussion orchestration.
|
|
|
|
This package provides tools for conducting structured discussions between
|
|
multiple AI personas with voting, phases, and consensus tracking.
|
|
"""
|
|
|
|
__version__ = "0.1.0"
|
|
|
|
# Core classes will be exported here once implemented
|
|
# from .discussion import Discussion
|
|
# from .participant import Participant
|
|
# from .runner import Runner
|
|
# from .voting import VotingConfig, calculate_consensus
|