Leon4gr45's picture
Upload folder using huggingface_hub (part 11)
f2e9a59 verified
Raw
History Blame Contribute Delete
200 Bytes
import { loadVars } from './variable.context';
export const isGeneral = () => {
return typeof process.env.IS_GENERAL === 'undefined'
? !!process.env.IS_GENERAL
: loadVars?.()?.isGeneral;
};