File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
template_langgraph/services/streamlits/pages Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -143,16 +143,16 @@ def _render_logs(logs: list[LogEntry]) -> None:
143143process = runner .get ("process" )
144144is_running = bool (process ) and process .poll () is None
145145
146- st .title ("Codex CLI Runner" )
146+ st .title ("CLI Runner" )
147147
148148with 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
212212if is_running and runner .get ("auto_refresh" , True ):
213213 time .sleep (1 )
214- st .experimental_rerun ()
214+ st .rerun ()
You can’t perform that action at this time.
0 commit comments