Initial import of NousResearch/hermes-agent
Deploy Site / deploy-vercel (push) Has been cancelled
Deploy Site / deploy-docs (push) Has been cancelled
Docker / shell lint / Lint Dockerfile (hadolint) (push) Has been cancelled
Docker / shell lint / Lint docker/ shell scripts (shellcheck) (push) Has been cancelled
Docker Build and Publish / build-amd64 (push) Has been cancelled
Docker Build and Publish / build-arm64 (push) Has been cancelled
Lint (ruff + ty) / ruff + ty diff (push) Has been cancelled
Lint (ruff + ty) / ruff enforcement (blocking) (push) Has been cancelled
Lint (ruff + ty) / Windows footguns (blocking) (push) Has been cancelled
Nix Lockfile Fix / auto-fix-main (push) Has been cancelled
Nix Lockfile Fix / fix (push) Has been cancelled
Nix / nix (macos-latest) (push) Has been cancelled
Nix / nix (ubuntu-latest) (push) Has been cancelled
OSV-Scanner / Scan lockfiles (push) Has been cancelled
Build Skills Index / build-index (push) Has been cancelled
Tests / test (1) (push) Has been cancelled
Tests / test (2) (push) Has been cancelled
Tests / test (3) (push) Has been cancelled
Tests / test (4) (push) Has been cancelled
Tests / test (5) (push) Has been cancelled
Tests / test (6) (push) Has been cancelled
Tests / e2e (push) Has been cancelled
uv.lock check / uv lock --check (push) Has been cancelled
Docker Build and Publish / merge (push) Has been cancelled
Build Skills Index / trigger-deploy (push) Has been cancelled
Tests / save-durations (push) Has been cancelled
Deploy Site / deploy-vercel (push) Has been cancelled
Deploy Site / deploy-docs (push) Has been cancelled
Docker / shell lint / Lint Dockerfile (hadolint) (push) Has been cancelled
Docker / shell lint / Lint docker/ shell scripts (shellcheck) (push) Has been cancelled
Docker Build and Publish / build-amd64 (push) Has been cancelled
Docker Build and Publish / build-arm64 (push) Has been cancelled
Lint (ruff + ty) / ruff + ty diff (push) Has been cancelled
Lint (ruff + ty) / ruff enforcement (blocking) (push) Has been cancelled
Lint (ruff + ty) / Windows footguns (blocking) (push) Has been cancelled
Nix Lockfile Fix / auto-fix-main (push) Has been cancelled
Nix Lockfile Fix / fix (push) Has been cancelled
Nix / nix (macos-latest) (push) Has been cancelled
Nix / nix (ubuntu-latest) (push) Has been cancelled
OSV-Scanner / Scan lockfiles (push) Has been cancelled
Build Skills Index / build-index (push) Has been cancelled
Tests / test (1) (push) Has been cancelled
Tests / test (2) (push) Has been cancelled
Tests / test (3) (push) Has been cancelled
Tests / test (4) (push) Has been cancelled
Tests / test (5) (push) Has been cancelled
Tests / test (6) (push) Has been cancelled
Tests / e2e (push) Has been cancelled
uv.lock check / uv lock --check (push) Has been cancelled
Docker Build and Publish / merge (push) Has been cancelled
Build Skills Index / trigger-deploy (push) Has been cancelled
Tests / save-durations (push) Has been cancelled
This commit is contained in:
@@ -0,0 +1,107 @@
|
||||
"""Text-debounce batching for the WhatsApp adapter (issue #35301).
|
||||
|
||||
WhatsApp delivers rapid multi-message bursts (forwarded batches, paste-splits)
|
||||
individually. Without debounce each fragment triggers a separate agent
|
||||
invocation, wasting tokens and flooding the user with reply fragments. This
|
||||
mirrors the Telegram/WeCom/Feishu pattern.
|
||||
|
||||
Batch delays are read from ``config.extra`` (config.yaml), not env vars.
|
||||
"""
|
||||
|
||||
import asyncio
|
||||
|
||||
from gateway.config import Platform, PlatformConfig
|
||||
from gateway.platforms.base import MessageEvent, MessageType
|
||||
from gateway.platforms.whatsapp import WhatsAppAdapter
|
||||
from gateway.session import SessionSource
|
||||
|
||||
|
||||
def _make_adapter(**extra):
|
||||
base = {"session_name": "test"}
|
||||
base.update(extra)
|
||||
return WhatsAppAdapter(PlatformConfig(enabled=True, extra=base))
|
||||
|
||||
|
||||
def _event(text):
|
||||
src = SessionSource(
|
||||
platform=Platform.WHATSAPP,
|
||||
chat_id="chat123",
|
||||
chat_type="dm",
|
||||
user_id="user1",
|
||||
user_name="tester",
|
||||
)
|
||||
return MessageEvent(text=text, message_type=MessageType.TEXT, source=src)
|
||||
|
||||
|
||||
def test_batch_delays_default_from_config():
|
||||
adapter = _make_adapter()
|
||||
assert adapter._text_batch_delay_seconds == 5.0
|
||||
assert adapter._text_batch_split_delay_seconds == 10.0
|
||||
|
||||
|
||||
def test_batch_delays_overridden_via_config_extra():
|
||||
adapter = _make_adapter(
|
||||
text_batch_delay_seconds="2.5",
|
||||
text_batch_split_delay_seconds=7,
|
||||
)
|
||||
assert adapter._text_batch_delay_seconds == 2.5
|
||||
assert adapter._text_batch_split_delay_seconds == 7.0
|
||||
|
||||
|
||||
def test_invalid_config_value_falls_back_to_default():
|
||||
adapter = _make_adapter(
|
||||
text_batch_delay_seconds="garbage",
|
||||
text_batch_split_delay_seconds=-3,
|
||||
)
|
||||
assert adapter._text_batch_delay_seconds == 5.0
|
||||
assert adapter._text_batch_split_delay_seconds == 10.0
|
||||
|
||||
|
||||
def test_env_var_is_ignored(monkeypatch):
|
||||
# Config-only path: the legacy HERMES_* env var must NOT influence delays.
|
||||
monkeypatch.setenv("HERMES_WHATSAPP_TEXT_BATCH_DELAY_SECONDS", "99")
|
||||
adapter = _make_adapter()
|
||||
assert adapter._text_batch_delay_seconds == 5.0
|
||||
|
||||
|
||||
def test_rapid_texts_collapse_into_single_dispatch():
|
||||
adapter = _make_adapter(
|
||||
text_batch_delay_seconds=0.05,
|
||||
text_batch_split_delay_seconds=0.05,
|
||||
)
|
||||
dispatched = []
|
||||
|
||||
async def _capture(event):
|
||||
dispatched.append(event.text)
|
||||
|
||||
adapter.handle_message = _capture
|
||||
|
||||
async def _drive():
|
||||
adapter._enqueue_text_event(_event("one"))
|
||||
adapter._enqueue_text_event(_event("two"))
|
||||
adapter._enqueue_text_event(_event("three"))
|
||||
assert dispatched == [] # nothing flushed during the burst
|
||||
await asyncio.sleep(0.2)
|
||||
|
||||
asyncio.run(_drive())
|
||||
assert dispatched == ["one\ntwo\nthree"]
|
||||
|
||||
|
||||
def test_lone_message_dispatched_alone():
|
||||
adapter = _make_adapter(
|
||||
text_batch_delay_seconds=0.05,
|
||||
text_batch_split_delay_seconds=0.05,
|
||||
)
|
||||
dispatched = []
|
||||
|
||||
async def _capture(event):
|
||||
dispatched.append(event.text)
|
||||
|
||||
adapter.handle_message = _capture
|
||||
|
||||
async def _drive():
|
||||
adapter._enqueue_text_event(_event("solo"))
|
||||
await asyncio.sleep(0.2)
|
||||
|
||||
asyncio.run(_drive())
|
||||
assert dispatched == ["solo"]
|
||||
Reference in New Issue
Block a user