nothumanallowed 16.0.51 → 16.0.53

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nothumanallowed",
3
- "version": "16.0.51",
3
+ "version": "16.0.53",
4
4
  "description": "Local AI assistant: 80 tools (Gmail, Calendar, Drive, GitHub, Slack, browser, code, files), 38 agents, visual workflows (Studio, AWF, WebCraft). Install with `npm i -g nothumanallowed`, run with `nha ui`. Free tier built-in (Liara), no API key required. Your data stays on your PC — OAuth tokens local, no cloud. Open-source MIT.",
5
5
  "type": "module",
6
6
  "bin": {
package/src/config.mjs CHANGED
@@ -290,6 +290,10 @@ export function setConfigValue(key, value) {
290
290
  'coherekey': 'llm.cohereKey',
291
291
  'cohereKey': 'llm.cohereKey',
292
292
  'cohere_key': 'llm.cohereKey',
293
+ 'openrouter-key': 'llm.openrouterKey',
294
+ 'openrouterkey': 'llm.openrouterKey',
295
+ 'openrouterKey': 'llm.openrouterKey',
296
+ 'openrouter_key': 'llm.openrouterKey',
293
297
  'model': 'llm.model',
294
298
  'timeout': 'llm.timeout',
295
299
  'verbose': 'features.verbose',
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 = '16.0.51';
8
+ export const VERSION = '16.0.53';
9
9
  export const BASE_URL = 'https://nothumanallowed.com/cli';
10
10
  export const API_BASE = 'https://nothumanallowed.com/api/v1';
11
11
 
@@ -307,6 +307,7 @@ export function register(router) {
307
307
  // Key presence flags (never expose the actual key)
308
308
  hasApiKey: !!(config.llm?.apiKey),
309
309
  hasOpenaiKey: !!(config.llm?.openaiKey),
310
+ hasOpenrouterKey: !!(config.llm?.openrouterKey),
310
311
  hasGeminiKey: !!(config.llm?.geminiKey),
311
312
  hasDeepseekKey: !!(config.llm?.deepseekKey),
312
313
  hasGrokKey: !!(config.llm?.grokKey),