Skip to content

Commit 8da7f04

Browse files
committed
manual fix
1 parent 6f89987 commit 8da7f04

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

template_langgraph/services/streamlits/pages/codex_cli_runner.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,8 @@ def _render_logs(logs: list[LogEntry]) -> None:
151151
st.session_state.cli_runner["command"] = st.text_input(
152152
label="Command",
153153
key="cli_runner_command_input",
154-
value=runner.get("command", ""),
155-
placeholder="e.g. ls -la",
154+
value="codex exec --help",
155+
placeholder="e.g. ls -la; while true; do date +%s; sleep 1; done",
156156
)
157157

158158
run_clicked = st.button("Run", use_container_width=True)
@@ -211,4 +211,4 @@ def _render_logs(logs: list[LogEntry]) -> None:
211211

212212
if is_running and runner.get("auto_refresh", True):
213213
time.sleep(1)
214-
st.experimental_rerun()
214+
st.rerun()

0 commit comments

Comments
 (0)