nothumanallowed 15.1.20 → 15.1.21
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/package.json +1 -1
- package/src/cli.mjs +5 -2
- package/src/constants.mjs +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nothumanallowed",
|
|
3
|
-
"version": "15.1.
|
|
3
|
+
"version": "15.1.21",
|
|
4
4
|
"description": "NotHumanAllowed — 38 AI agents, 80 tools, Studio (visual agentic workflows). Email, calendar, browser automation, screen capture, canvas, cron/heartbeat, Alexandria E2E messaging, GitHub, Notion, Slack, voice chat, free AI (Liara), 28 languages. Zero-dependency CLI.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
package/src/cli.mjs
CHANGED
|
@@ -521,7 +521,7 @@ function cmdConfig(args) {
|
|
|
521
521
|
if (!key || !value) {
|
|
522
522
|
fail('Usage: nha config set <key> <value>');
|
|
523
523
|
console.log('');
|
|
524
|
-
info('Keys: provider, key, openai-key, gemini-key, deepseek-key, grok-key, model, timeout');
|
|
524
|
+
info('Keys: provider, key, openai-key, gemini-key, deepseek-key, grok-key, groq-key (voice/Whisper), model, timeout');
|
|
525
525
|
info(' verbose, immersive, deliberation, rounds, convergence, tribunal, knowledge');
|
|
526
526
|
info(' google-client-id, google-client-secret');
|
|
527
527
|
info(' microsoft-client-id, microsoft-client-secret, microsoft-tenant');
|
|
@@ -553,7 +553,10 @@ function cmdConfig(args) {
|
|
|
553
553
|
if (config.llm.openaiKey) console.log(` OpenAI Key: ${G}${config.llm.openaiKey.slice(0, 12)}...${NC}`);
|
|
554
554
|
if (config.llm.geminiKey) console.log(` Gemini Key: ${G}${config.llm.geminiKey.slice(0, 12)}...${NC}`);
|
|
555
555
|
if (config.llm.deepseekKey) console.log(` DeepSeek Key: ${G}${config.llm.deepseekKey.slice(0, 12)}...${NC}`);
|
|
556
|
-
if (config.llm.grokKey) console.log(` Grok Key: ${G}${config.llm.grokKey.slice(0, 12)}...${NC}`);
|
|
556
|
+
if (config.llm.grokKey) console.log(` Grok Key: ${G}${config.llm.grokKey.slice(0, 12)}...${NC} ${D}(X.AI Grok LLM)${NC}`);
|
|
557
|
+
// Groq is for voice transcription (Whisper). ALWAYS show so users can see
|
|
558
|
+
// whether it's configured — voice in Telegram needs this when NHA proxy is down.
|
|
559
|
+
console.log(` Groq Key: ${config.llm.groqKey ? G + config.llm.groqKey.slice(0, 12) + '...' : R + '(not set)'}${NC} ${D}(voice transcription, free at https://console.groq.com/keys)${NC}`);
|
|
557
560
|
if (config.llm.model) console.log(` Model: ${W}${config.llm.model}${NC}`);
|
|
558
561
|
console.log(` Timeout: ${D}${config.llm.timeout}ms${NC}`);
|
|
559
562
|
|
package/src/constants.mjs
CHANGED
|
@@ -5,7 +5,7 @@ import { fileURLToPath } from 'url';
|
|
|
5
5
|
const __filename = fileURLToPath(import.meta.url);
|
|
6
6
|
const __dirname = path.dirname(__filename);
|
|
7
7
|
|
|
8
|
-
export const VERSION = '15.1.
|
|
8
|
+
export const VERSION = '15.1.21';
|
|
9
9
|
export const BASE_URL = 'https://nothumanallowed.com/cli';
|
|
10
10
|
export const API_BASE = 'https://nothumanallowed.com/api/v1';
|
|
11
11
|
|