OpenCodeEngine represents the OpenCode CLI agentic engine. OpenCode is a provider-agnostic, open-source AI coding agent that supports multiple models via BYOK (Bring Your Own Key).
| 13 | // OpenCode is a provider-agnostic, open-source AI coding agent that supports |
| 14 | // multiple models via BYOK (Bring Your Own Key). |
| 15 | type OpenCodeEngine struct { |
| 16 | UniversalLLMConsumerEngine |
| 17 | } |
| 18 | |
| 19 | func NewOpenCodeEngine() *OpenCodeEngine { |
| 20 | return &OpenCodeEngine{ |
nothing calls this directly
no outgoing calls
no test coverage detected