BaseEngine provides common functionality for agentic engines
| 314 | |
| 315 | // BaseEngine provides common functionality for agentic engines |
| 316 | type BaseEngine struct { |
| 317 | id string |
| 318 | displayName string |
| 319 | description string |
| 320 | experimental bool |
| 321 | ghSkillAgentName string |
| 322 | capabilities EngineCapabilities |
| 323 | dedicatedLLMGatewayPort int |
| 324 | } |
| 325 | |
| 326 | func (e *BaseEngine) GetID() string { |
| 327 | return e.id |
nothing calls this directly
no outgoing calls
no test coverage detected