(configOrSession)
| 824 | } |
| 825 | |
| 826 | export function isUsingGptCompletionApiModel(configOrSession) { |
| 827 | return isInApiModeGroup(gptApiModelKeys, configOrSession) |
| 828 | } |
| 829 | |
| 830 | export function isUsingOpenAiApiModel(configOrSession) { |
| 831 | return isUsingChatgptApiModel(configOrSession) || isUsingGptCompletionApiModel(configOrSession) |
no test coverage detected