(configOrSession)
| 828 | } |
| 829 | |
| 830 | export function isUsingOpenAiApiModel(configOrSession) { |
| 831 | return isUsingChatgptApiModel(configOrSession) || isUsingGptCompletionApiModel(configOrSession) |
| 832 | } |
| 833 | |
| 834 | export function isUsingClaudeApiModel(configOrSession) { |
| 835 | return isInApiModeGroup(claudeApiModelKeys, configOrSession) |
no test coverage detected