MCPcopy Create free account
hub / github.com/Chat2AnyLLM/code-agent-manager / newLaunchWizardModel

Function newLaunchWizardModel

internal/cli/launch_wizard.go:158–169  ·  view source on GitHub ↗
(initial launchSelection, in wizardInput,
	needTool, needEndpoint, needModel bool)

Source from the content-addressed store, hash-verified

156}
157
158func newLaunchWizardModel(initial launchSelection, in wizardInput,
159 needTool, needEndpoint, needModel bool) launchWizardModel {
160 m := launchWizardModel{
161 in: in,
162 sel: initial,
163 needTool: needTool,
164 needEndpoint: needEndpoint,
165 needModel: needModel,
166 }
167 m.advanceToNextNeededPhase()
168 return m
169}
170
171func (m launchWizardModel) Init() tea.Cmd { return nil }
172

Calls 1