prior-cli 1.5.5 → 1.5.6

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.
Files changed (2) hide show
  1. package/bin/prior.js +1 -3
  2. package/package.json +1 -1
package/bin/prior.js CHANGED
@@ -1080,9 +1080,7 @@ Be concise but thorough — this summary replaces the full history to save conte
1080
1080
  },
1081
1081
  ];
1082
1082
 
1083
- const { infer } = require('./lib/agent');
1084
- // infer is not exported — call backend directly
1085
- const token = require('./lib/config').getToken();
1083
+ const token = require('../lib/config').getToken();
1086
1084
  const res = await fetch('https://prior.ngrok.app/cli-backend/api/infer', {
1087
1085
  method: 'POST',
1088
1086
  headers: { 'Content-Type': 'application/json' },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prior-cli",
3
- "version": "1.5.5",
3
+ "version": "1.5.6",
4
4
  "description": "Prior Network AI — command-line interface",
5
5
  "bin": {
6
6
  "prior": "bin/prior.js"