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.
- package/bin/prior.js +4 -4
- 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
|
|
874
|
-
{ cmd: '/uncensored', desc: 'Load
|
|
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
|
|
1596
|
-
console.log(c.muted(' /uncensored ') + 'Load
|
|
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');
|