prior-cli 1.7.3 → 1.7.4

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 +4 -4
  2. package/package.json +1 -1
package/bin/prior.js CHANGED
@@ -870,8 +870,8 @@ async function startChat(opts = {}) {
870
870
  { cmd: '/delete', desc: 'Delete a saved conversation' },
871
871
  { cmd: '/help', desc: 'Show help' },
872
872
  { cmd: '/clear', desc: 'Clear screen' },
873
- { cmd: '/censored', desc: 'Load standard model (qwen)' },
874
- { cmd: '/uncensored', desc: 'Load uncensored model' },
873
+ { cmd: '/censored', desc: 'Load Prior Standard model' },
874
+ { cmd: '/uncensored', desc: 'Load Prior Uncensored model' },
875
875
  { cmd: '/usage', desc: 'Token usage today' },
876
876
  { cmd: '/learn', desc: 'Learn this directory → prior.md' },
877
877
  { cmd: '/login', desc: 'Sign in' },
@@ -1592,8 +1592,8 @@ Be concise but thorough — this summary replaces the full history to save conte
1592
1592
  console.log(c.muted(' /load [name|number] ') + 'Load a saved conversation (picker if no arg)');
1593
1593
  console.log(c.muted(' /delete [name|number]') + 'Delete a saved conversation');
1594
1594
  console.log(c.muted(' /clear ') + 'Clear screen');
1595
- console.log(c.muted(' /censored ') + 'Load standard model (qwen)');
1596
- console.log(c.muted(' /uncensored ') + 'Load uncensored model (dolphin)');
1595
+ console.log(c.muted(' /censored ') + 'Load Prior Standard model');
1596
+ console.log(c.muted(' /uncensored ') + 'Load Prior Uncensored model');
1597
1597
  console.log(c.muted(' /usage ') + 'Token usage for today');
1598
1598
  console.log(c.muted(' /learn ') + 'Scan directory and write prior.md context file');
1599
1599
  console.log(c.muted(' /login ') + 'Sign in to a different account');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prior-cli",
3
- "version": "1.7.3",
3
+ "version": "1.7.4",
4
4
  "description": "Prior Network AI — command-line interface",
5
5
  "bin": {
6
6
  "prior": "bin/prior.js"