| 12 | ) |
| 13 | |
| 14 | type fakeMoaAdapter struct { |
| 15 | lastPrompt string |
| 16 | lastModels []string |
| 17 | lastAgg string |
| 18 | out string |
| 19 | } |
| 20 | |
| 21 | func (f *fakeMoaAdapter) Run(_ context.Context, prompt string, members []string, aggregator string) (string, error) { |
| 22 | f.lastPrompt = prompt |
nothing calls this directly
no outgoing calls
no test coverage detected