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

Function newLimitedPickerStep

internal/cli/tool_menu.go:29–36  ·  view source on GitHub ↗
(title string, items []string, hint string, limit int)

Source from the content-addressed store, hash-verified

27}
28
29func newLimitedPickerStep(title string, items []string, hint string, limit int) pickerStep {
30 return pickerStep{
31 title: title,
32 items: append([]string(nil), items...),
33 visibleLimit: limit,
34 hint: hint,
35 }
36}
37
38// pickerAction summarises what the wrapping model should do after a
39// key event.

Calls

no outgoing calls