ai_api / src /shared /utils /cliCompat.ts
Yogesh
initial deploy
cd8bd0a
Raw
History Blame Contribute Delete
194 Bytes
export function normalizeCliCompatProviderId(providerId: string): string {
const normalized = providerId.toLowerCase();
if (normalized === "copilot") return "github";
return normalized;
}