mirror of
https://github.com/domfelipe/hermes-client-onboarding.git
synced 2026-08-07 06:56:43 +00:00
Fix auto_kickoff_cli.py: non-ASCII bytes literal
This commit is contained in:
parent
d8bea2017b
commit
ec5a72865e
1 changed files with 2 additions and 1 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue