alwaysai
Version:
The alwaysAI command-line interface (CLI)
15 lines • 596 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const alwayscli_1 = require("@alwaysai/alwayscli");
const rpc_client_1 = require("../../../rpc-client");
exports.searchModels = alwayscli_1.createLeaf({
name: 'search',
description: 'Search alwaysAI models',
async action() {
const rpcClient = await rpc_client_1.RpcClient();
const modelVersions = await rpcClient.listModelVersions();
const uniqueIds = [...new Set(modelVersions.map(({ id }) => id))];
return uniqueIds.join('\n');
},
});
//# sourceMappingURL=search.js.map