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