Enhancements
Selective Broadcasting
- Enhanced `PersonaSystem.broadcast_interaction()` with selective broadcasting capabilities
- Added ability to target specific characters with `broadcast_to` parameter
- Added ability to exclude specific characters with `exclude_characters` parameter
Example Usage
python
Broadcast to specific characters
system.broadcast_interaction(
content={"message": "Hello targeted characters!"},
broadcast_to=["character1", "character2"]
)
Broadcast to all except excluded characters
system.broadcast_interaction(
content={"message": "Hello everyone except you!"},
exclude_characters=["character3"]
)