(ctx context.Context, rt runtime.Runtime, sess *session.Session, spawner tui.SessionSpawner, cleanup func(), tuiOpts []tui.Option, opts ...app.Opt)
| 91 | } |
| 92 | |
| 93 | func runTUI(ctx context.Context, rt runtime.Runtime, sess *session.Session, spawner tui.SessionSpawner, cleanup func(), tuiOpts []tui.Option, opts ...app.Opt) error { |
| 94 | return runTUIWrapped(ctx, rt, sess, spawner, cleanup, tuiOpts, nil, opts...) |
| 95 | } |
| 96 | |
| 97 | // runTUIWrapped is runTUI with an optional model wrapper, used by --record to |
| 98 | // interpose the input recorder between the terminal and the real model. |
no test coverage detected