@hasna/brains 0.0.17 → 0.0.18
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/dist/cli/index.js +2 -2
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -23788,8 +23788,8 @@ async function listCollections(json = false) {
|
|
|
23788
23788
|
}
|
|
23789
23789
|
function registerCollectionsCommands(program2) {
|
|
23790
23790
|
const collectionsCmd = program2.command("collections").description("Manage model collections");
|
|
23791
|
-
collectionsCmd.
|
|
23792
|
-
await listCollections(
|
|
23791
|
+
collectionsCmd.action(async () => {
|
|
23792
|
+
await listCollections(false);
|
|
23793
23793
|
});
|
|
23794
23794
|
collectionsCmd.command("list").description("List all collections with model counts").option("--json", "Output as JSON").action(async (opts) => {
|
|
23795
23795
|
await listCollections(opts.json);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hasna/brains",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.18",
|
|
4
4
|
"description": "Fine-tuned model tracker and trainer — wraps OpenAI + Thinker Labs, gathers training data from todos/mementos/conversations/sessions",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|