ResolveLLMProvider returns the effective provider for Claude inference. Default is anthropic, overridable via engine.model-provider.
(workflowData *WorkflowData)
| 49 | // ResolveLLMProvider returns the effective provider for Claude inference. |
| 50 | // Default is anthropic, overridable via engine.model-provider. |
| 51 | func (e *ClaudeEngine) ResolveLLMProvider(workflowData *WorkflowData) string { |
| 52 | return resolveEngineLLMProvider(workflowData, LLMProviderAnthropic) |
| 53 | } |
| 54 | |
| 55 | // GetAPMTarget returns "claude" so that apm-action packs Claude-specific primitives. |
| 56 | func (e *ClaudeEngine) GetAPMTarget() string { |
no test coverage detected