Open TheOnlyFastCoder2 opened 1 year ago
Use the main directory, instead of the home path.I don't like it when the c disk is cluttered, and even more so the weights can weigh a lot.
//index.ts //before: const homeDir = app.getPath("home"); const MODEL_LOCATION = homeDir + "/FreedomGPT"; //after: const rootDir = process.cwd(); const MODEL_LOCATION = rootDir + "/weights";
Use the main directory, instead of the home path.I don't like it when the c disk is cluttered, and even more so the weights can weigh a lot.