feat: add -c and -s args to tui command following run command pattern (#1835)

This commit is contained in:
Aiden Cline
2025-08-11 18:32:09 -05:00
committed by GitHub
parent 0ce7d92a8b
commit b2a4f57d64
3 changed files with 66 additions and 15 deletions

View File

@@ -32,6 +32,7 @@ func main() {
var model *string = flag.String("model", "", "model to begin with")
var prompt *string = flag.String("prompt", "", "prompt to begin with")
var agent *string = flag.String("agent", "", "agent to begin with")
var sessionID *string = flag.String("session", "", "session ID")
flag.Parse()
url := os.Getenv("OPENCODE_SERVER")
@@ -96,7 +97,7 @@ func main() {
}()
// Create main context for the application
app_, err := app.New(ctx, version, appInfo, agents, httpClient, model, prompt, agent)
app_, err := app.New(ctx, version, appInfo, agents, httpClient, model, prompt, agent, sessionID)
if err != nil {
panic(err)
}