Skip to content

Commit 4c065c1

Browse files
committed
manual fix
1 parent 6f89987 commit 4c065c1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

template_langgraph/services/streamlits/pages/codex_cli_runner.py renamed to template_langgraph/services/streamlits/pages/cli_runner.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -143,16 +143,16 @@ def _render_logs(logs: list[LogEntry]) -> None:
143143
process = runner.get("process")
144144
is_running = bool(process) and process.poll() is None
145145

146-
st.title("Codex CLI Runner")
146+
st.title("CLI Runner")
147147

148148
with st.sidebar:
149149
st.header("Command Settings")
150150
st.text("CLIコマンドを指定して実行します。")
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)