hahma / src /shared /utils /cliCompat.ts
automindy's picture
Upload 1980 files
bc4a7e8 verified
Raw
History Blame Contribute Delete
199 Bytes
export function normalizeCliCompatProviderId(providerId: string): string {
const normalized = providerId.toLowerCase();
if (normalized === "copilot") return "github";
return normalized;
}