Skip to content

Releases: Ate329/PersonaFlow

version 0.1.2 release

27 Oct 19:21
Compare
Choose a tag to compare

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

24 Oct 14:33
Compare
Choose a tag to compare
v0.1.1

Merge branch 'main' of /~https://github.com/Ate329/PersonaFlow