diff --git a/agent/characters/lily/.gitignore b/agent/characters/lily/.gitignore new file mode 100644 index 0000000..6b15748 --- /dev/null +++ b/agent/characters/lily/.gitignore @@ -0,0 +1 @@ +service.yaml \ No newline at end of file diff --git a/agent/characters/lily/service.default.yaml b/agent/characters/lily/service.default.yaml new file mode 100644 index 0000000..86bb17b --- /dev/null +++ b/agent/characters/lily/service.default.yaml @@ -0,0 +1,21 @@ +# This file serves as a template for character-specific service overrides. +# Copy this to agent/characters//service.yaml and fill in the credentials. + +xmpp: + enabled: false + username: "" + password: "" + muc_rooms: # YAML list, e.g.: + # - "room1@conference.server" + # - "room2@conference.server" + nickname: "" # custom MUC nickname (empty = use username) + selective_response: true # true = only response if mentioned/relevant + debug: false # true = tampilkan log debug menyeluruh (semua stanza XML, lifecycle, dll) + +telegram: + enabled: false + token: "" + allowed_group_ids: # YAML list, empty = all group. e.g.: + # - "123456789" + # - "987654321" + selective_response: true # true = only response if mentioned/relevant \ No newline at end of file diff --git a/config.default.yaml b/config.default.yaml index 466b7b2..8eeaad7 100644 --- a/config.default.yaml +++ b/config.default.yaml @@ -22,6 +22,12 @@ ragroleplay: # Use nomic-embed-text db_path : "~/.config/hendrik/ragroleplay" vector_size : 768 # used on table create only +delay: # Humanize Delay (anti-bot detection) + read_min : 1.0 # second + read_max : 2.0 # second + typing_speed : 15.0 # character(s) per second + typing_max : 10.0 # max typing delay limit per second + xmpp: enabled: false username: "" @@ -40,9 +46,3 @@ telegram: # - "123456789" # - "987654321" selective_response: true # true = only response if mentioned/relevant - -delay: # Humanize Delay (anti-bot detection) - read_min : 1.0 # second - read_max : 2.0 # second - typing_speed : 15.0 # character(s) per second - typing_max : 10.0 # max typing delay limit per second