File size: 199 Bytes
bc4a7e8
 
 
 
 
1
2
3
4
5
6
export function normalizeCliCompatProviderId(providerId: string): string {
  const normalized = providerId.toLowerCase();
  if (normalized === "copilot") return "github";
  return normalized;
}