We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f89987 commit 8da7f04Copy full SHA for 8da7f04
template_langgraph/services/streamlits/pages/codex_cli_runner.py
@@ -151,8 +151,8 @@ def _render_logs(logs: list[LogEntry]) -> None:
151
st.session_state.cli_runner["command"] = st.text_input(
152
label="Command",
153
key="cli_runner_command_input",
154
- value=runner.get("command", ""),
155
- placeholder="e.g. ls -la",
+ value="codex exec --help",
+ placeholder="e.g. ls -la; while true; do date +%s; sleep 1; done",
156
)
157
158
run_clicked = st.button("Run", use_container_width=True)
@@ -211,4 +211,4 @@ def _render_logs(logs: list[LogEntry]) -> None:
211
212
if is_running and runner.get("auto_refresh", True):
213
time.sleep(1)
214
- st.experimental_rerun()
+ st.rerun()
0 commit comments