export const huggingfaceOpenIdScope = "openid";
export const huggingfaceProfileScope = "profile";
export const huggingfaceInferenceScope = "inference-api";
export const huggingfaceReadReposScope = "read-repos";

export const huggingfaceOAuthScopes: string[] = [
  huggingfaceOpenIdScope,
  huggingfaceProfileScope,
  huggingfaceInferenceScope,
  huggingfaceReadReposScope,
];
