Fix auto_kickoff_cli.py: non-ASCII bytes literal

This commit is contained in:
domfelipe 2026-08-03 00:27:04 -03:00
parent d8bea2017b
commit ec5a72865e

View file

@ -79,8 +79,9 @@ def main() -> int:
b"welcome", b"welcome",
b"type your message", b"type your message",
b"\n> ", b"\n> ",
b"\n", "\n".encode("utf-8"),
b"\nprompt", b"\nprompt",
b"hermes",
) )
looks_ready = any(m in lower for m in ready_markers) looks_ready = any(m in lower for m in ready_markers)
timed = now >= start + 4.0 # hard fallback inject timed = now >= start + 4.0 # hard fallback inject