()
| 14 | ) |
| 15 | |
| 16 | func (r *RootCmd) chatCommand() *serpent.Command { |
| 17 | return &serpent.Command{ |
| 18 | Use: "chat", |
| 19 | Short: "Manage agent chats", |
| 20 | Long: "Commands for interacting with chats from within a workspace.", |
| 21 | Handler: func(i *serpent.Invocation) error { |
| 22 | return i.Command.HelpHandler(i) |
| 23 | }, |
| 24 | Children: []*serpent.Command{ |
| 25 | r.chatContextCommand(), |
| 26 | }, |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | func (r *RootCmd) chatContextCommand() *serpent.Command { |
| 31 | return &serpent.Command{ |
no test coverage detected