Execute parses the args and dispatches to the adapter.
(ctx context.Context, args []string)
| 149 | |
| 150 | // Execute parses the args and dispatches to the adapter. |
| 151 | func (p *BuiltinKnowledgePlugin) Execute(ctx context.Context, args []string) (string, error) { |
| 152 | return p.ExecuteWithStream(ctx, args, nil) |
| 153 | } |
| 154 | |
| 155 | // ExecuteWithStream mirrors Execute — this plugin produces no incremental |
| 156 | // output, so the stream callback is ignored. |