portable-agent-layer 0.24.0 → 0.24.1
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/index.ts +6 -0
package/package.json
CHANGED
package/src/cli/index.ts
CHANGED
|
@@ -382,6 +382,12 @@ function doctor(silent = false): DoctorResult {
|
|
|
382
382
|
process.env.PAL_GEMINI_API_KEY
|
|
383
383
|
? ok("PAL_GEMINI_API_KEY is set")
|
|
384
384
|
: warn("PAL_GEMINI_API_KEY — not set (optional, for YouTube analysis)");
|
|
385
|
+
process.env.PAL_XAI_API_KEY
|
|
386
|
+
? ok("PAL_XAI_API_KEY is set")
|
|
387
|
+
: warn("PAL_XAI_API_KEY — not set (optional, for Grok researcher)");
|
|
388
|
+
process.env.PAL_PERPLEXITY_API_KEY
|
|
389
|
+
? ok("PAL_PERPLEXITY_API_KEY is set")
|
|
390
|
+
: warn("PAL_PERPLEXITY_API_KEY — not set (optional, for Perplexity researcher)");
|
|
385
391
|
|
|
386
392
|
// Hook health from debug.log
|
|
387
393
|
const hookHealth = checkHookHealth(home);
|