freebuff 0.0.127 → 0.0.129
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -2
- package/launcher.js +7 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -35,9 +35,15 @@ freebuff
|
|
|
35
35
|
|
|
36
36
|
**What is limited mode?** Limited mode lets you use Freebuff outside the full-access countries, or while using a VPN. It includes DeepSeek V4 Flash and MiMo 2.5, with 6 one-hour sessions per day.
|
|
37
37
|
|
|
38
|
-
|
|
38
|
+
<!-- BEGIN GENERATED FREEBUFF DATA USE -->
|
|
39
39
|
|
|
40
|
-
**
|
|
40
|
+
**Is my data used to train AI?** Only when a model or feature says data may be used for AI training. Freebuff or the provider may then keep submissions to develop, train, test, evaluate, fine-tune, and improve AI models or products.
|
|
41
|
+
|
|
42
|
+
**How is my data used and stored?** We use prompts, messages, code, files, and repository data to provide the service. We may analyze prompts and messages—including pasted content—to personalize ads, using Freebuff systems and service providers acting on our behalf. Separate uploads and connected repositories are not provided to advertising providers. Where required by law, we provide advertising choices and honor recognized opt-out signals; elsewhere, this processing may be required to use the free service. See the Privacy Policy for retention and details.
|
|
43
|
+
|
|
44
|
+
See the [Privacy Policy](https://freebuff.com/privacy-policy) for complete details.
|
|
45
|
+
|
|
46
|
+
<!-- END GENERATED FREEBUFF DATA USE -->
|
|
41
47
|
|
|
42
48
|
## Links
|
|
43
49
|
|
package/launcher.js
CHANGED
|
@@ -1110,9 +1110,15 @@ function createLauncher(productConfig) {
|
|
|
1110
1110
|
// exe or the download is corrupt — is thrown synchronously.
|
|
1111
1111
|
let child
|
|
1112
1112
|
try {
|
|
1113
|
+
const { env: optionEnv, ...spawnOptions } = options
|
|
1113
1114
|
child = spawn(CONFIG.binaryPath, process.argv.slice(2), {
|
|
1114
1115
|
stdio: 'inherit',
|
|
1115
|
-
...
|
|
1116
|
+
...spawnOptions,
|
|
1117
|
+
env: {
|
|
1118
|
+
...process.env,
|
|
1119
|
+
...optionEnv,
|
|
1120
|
+
CODEBUFF_LAUNCHER_PID: String(process.pid),
|
|
1121
|
+
},
|
|
1116
1122
|
})
|
|
1117
1123
|
} catch (err) {
|
|
1118
1124
|
exitOnSpawnFailure(err)
|