(provider string)
| 96 | } |
| 97 | |
| 98 | func llmProviderDocsURL(provider string) string { |
| 99 | switch normalizeLLMProvider(provider) { |
| 100 | case LLMProviderGitHub: |
| 101 | return "https://github.github.com/gh-aw/reference/engines/#github-copilot-default" |
| 102 | case LLMProviderOpenAI: |
| 103 | return "https://github.github.com/gh-aw/reference/engines/#openai-codex" |
| 104 | default: |
| 105 | return "https://github.github.com/gh-aw/reference/engines/#anthropic-claude-code" |
| 106 | } |
| 107 | } |
no test coverage detected