Verify POST /chat still accepts {message, chat_id} after agent.py refactor #6
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
All bench and integration tests POST to
/chatwith{"message": ..., "chat_id": ...}. Confirm the legacy/chatendpoint in the refactoredagent.pystill handles this payload shape correctly.Fix
Read the
/chatendpoint handler and confirm payload parsing is unchanged, or update tests to use/messagewith{"text", "session_id", "channel"}if the endpoint was removed/changed.