UNPKG
catai
Version:
beta (3.1.0-beta.2)
latest (3.2.2)
3.2.2
3.2.1
3.2.0
3.1.1
3.1.0
3.1.0-beta.2
3.1.0-beta.1
3.0.2
3.0.1
3.0.0
2.0.15
2.0.14
2.0.13
2.0.12
2.0.11
2.0.10
2.0.9
2.0.8
2.0.7
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
1.0.2
1.0.1
1.0.0
0.3.13
0.3.12
0.3.11
0.3.10
0.3.9
0.3.8
0.3.7
0.3.6
0.3.5
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
0.2.7
0.2.6
0.2.5
0.2.4
0.2.3
0.2.2
0.2.0
0.1.7
0.1.6
0.1.5
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Chat UI and Local API for the Llama models
github.com/withcatai/catai
withcatai/catai
catai
/
dist
/
cli
/
commands
/
active.js
8 lines
•
295 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
import
{
Command
}
from
'commander'
;
import
AppDb
from
'../../storage/app-db.js'
;
export
const
activeCommand =
new
Command
(
'active'
); activeCommand.
description
(
'Show active model'
) .
action
(
() =>
{
console
.
log
(
'Active model:'
,
AppDb
.
db
.
activeModel
); });
//# sourceMappingURL=active.js.map