GetSupportedEngines returns a list of all supported engine IDs
()
| 549 | |
| 550 | // GetSupportedEngines returns a list of all supported engine IDs |
| 551 | func (r *EngineRegistry) GetSupportedEngines() []string { |
| 552 | agenticEngineLog.Print("Getting list of supported engines") |
| 553 | engines := sliceutil.SortedKeys(r.engines) |
| 554 | return engines |
| 555 | } |
| 556 | |
| 557 | // IsValidEngine checks if an engine ID is valid |
| 558 | func (r *EngineRegistry) IsValidEngine(id string) bool { |