Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion s01_agent_loop/code.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def agent_loop(messages: list):
history = []
while True:
try:
query = input("\033[36ms01 >> \033[0m")
query = input("\001\033[36m\002s01 >> \001\033[0m\002")
except (EOFError, KeyboardInterrupt):
break
if query.strip().lower() in ("q", "exit", ""):
Expand Down
2 changes: 1 addition & 1 deletion s02_tool_use/code.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def agent_loop(messages: list):
history = []
while True:
try:
query = input("\033[36ms02 >> \033[0m")
query = input("\001\033[36m\002s02 >> \001\033[0m\002")
except (EOFError, KeyboardInterrupt):
break
if query.strip().lower() in ("q", "exit", ""):
Expand Down
2 changes: 1 addition & 1 deletion s03_permission/code.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ def agent_loop(messages: list):
history = []
while True:
try:
query = input("\033[36ms03 >> \033[0m")
query = input("\001\033[36m\002s03 >> \001\033[0m\002")
except (EOFError, KeyboardInterrupt):
break
if query.strip().lower() in ("q", "exit", ""):
Expand Down
2 changes: 1 addition & 1 deletion s04_hooks/code.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def agent_loop(messages: list):
history = []
while True:
try:
query = input("\033[36ms04 >> \033[0m")
query = input("\001\033[36m\002s04 >> \001\033[0m\002")
except (EOFError, KeyboardInterrupt):
break
if query.strip().lower() in ("q", "exit", ""):
Expand Down
2 changes: 1 addition & 1 deletion s05_todo_write/code.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ def agent_loop(messages: list):
history = []
while True:
try:
query = input("\033[36ms05 >> \033[0m")
query = input("\001\033[36m\002s05 >> \001\033[0m\002")
except (EOFError, KeyboardInterrupt):
break
if query.strip().lower() in ("q", "exit", ""):
Expand Down
2 changes: 1 addition & 1 deletion s06_subagent/code.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ def agent_loop(messages: list):
history = []
while True:
try:
query = input("\033[36ms06 >> \033[0m")
query = input("\001\033[36m\002s06 >> \001\033[0m\002")
except (EOFError, KeyboardInterrupt):
break
if query.strip().lower() in ("q", "exit", ""):
Expand Down
2 changes: 1 addition & 1 deletion s07_skill_loading/code.py
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ def agent_loop(messages: list):
history = []
while True:
try:
query = input("\033[36ms07 >> \033[0m")
query = input("\001\033[36m\002s07 >> \001\033[0m\002")
except (EOFError, KeyboardInterrupt):
break
if query.strip().lower() in ("q", "exit", ""):
Expand Down
2 changes: 1 addition & 1 deletion s08_context_compact/code.py
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ def agent_loop(messages: list, active_request: str):
history = []
while True:
try:
query = input("\033[36ms08 >> \033[0m")
query = input("\001\033[36m\002s08 >> \001\033[0m\002")
except (EOFError, KeyboardInterrupt):
break
if query.strip().lower() in ("q", "exit", ""):
Expand Down
2 changes: 1 addition & 1 deletion s09_memory/code.py
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,7 @@ def agent_loop(messages: list):
history = []
while True:
try:
query = input("\033[36ms09 >> \033[0m")
query = input("\001\033[36m\002s09 >> \001\033[0m\002")
except (EOFError, KeyboardInterrupt):
break
if query.strip().lower() in ("q", "exit", ""):
Expand Down
2 changes: 1 addition & 1 deletion s10_task_system/code.py
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ def agent_loop(messages: list):
history = []
while True:
try:
query = input("\033[36ms10 >> \033[0m")
query = input("\001\033[36m\002s10 >> \001\033[0m\002")
except (EOFError, KeyboardInterrupt):
break
if query.strip().lower() in ("q", "exit", ""):
Expand Down
2 changes: 1 addition & 1 deletion s11_background_tasks/code.py
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ def agent_loop(messages: list):
history = []
while True:
try:
query = input("\033[36ms11 >> \033[0m")
query = input("\001\033[36m\002s11 >> \001\033[0m\002")
except (EOFError, KeyboardInterrupt):
break
if query.strip().lower() in ("q", "exit", ""):
Expand Down
2 changes: 1 addition & 1 deletion s12_cron_scheduler/code.py
Original file line number Diff line number Diff line change
Expand Up @@ -758,7 +758,7 @@ def stop_runtime_threads():
try:
while True:
try:
query = input("\033[36ms12 >> \033[0m")
query = input("\001\033[36m\002s12 >> \001\033[0m\002")
except (EOFError, KeyboardInterrupt):
break
if query.strip().lower() in ("q", "exit", ""):
Expand Down
24 changes: 12 additions & 12 deletions web/src/data/generated/versions.json

Large diffs are not rendered by default.