fix: ACK-accelerated delivery — immediate on ACK, retry once, abort on double fail

Delays 1.5-2.5s (was 3-5s, only for broadcasts now).
DMs: send → ACK → next immediately. No ACK → retry once → abort.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
K7ZVX 2026-05-06 14:10:16 +00:00
commit 34f894ea79
2 changed files with 95 additions and 87 deletions

View file

@ -35,8 +35,8 @@ class ConnectionConfig:
class ResponseConfig:
"""Response behavior settings."""
delay_min: float = 3.0
delay_max: float = 5.0
delay_min: float = 1.5
delay_max: float = 2.5
max_length: int = 200
max_messages: int = 3