Releases: Ate329/PersonaFlow
Releases · Ate329/PersonaFlow
version 0.1.2 release
PersonaFlow v0.1.2
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
# 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"]
)
version 0.1.1 release
v0.1.1 Merge branch 'main' of /~https://github.com/Ate329/PersonaFlow