veil-browser 0.1.1 → 0.1.2
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/dist/index.js +1 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -72,10 +72,8 @@ const sessionCmd = program.command('session').description('Manage saved sessions
|
|
|
72
72
|
sessionCmd.command('list').description('List all saved sessions').action(sessionListCommand);
|
|
73
73
|
// --- Config ---
|
|
74
74
|
program
|
|
75
|
-
.command('config')
|
|
75
|
+
.command('config [key] [value]')
|
|
76
76
|
.description('Set or show veil configuration')
|
|
77
|
-
.argument('[key]', 'Config key e.g. llm.provider, llm.model, llm.apiKey, captcha.provider')
|
|
78
|
-
.argument('[value]', 'Config value to set')
|
|
79
77
|
.action(async (key, value) => {
|
|
80
78
|
const { promises: fs } = await import('fs');
|
|
81
79
|
const { homedir } = await import('os');
|