@my-life-buddies/cli 0.15.1 → 0.16.0
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/README.md +30 -37
- package/dist/bin/core.js +242 -252
- package/dist/bin/core.js.map +4 -4
- package/dist/bin/preview.js +1 -3
- package/dist/bin/preview.js.map +2 -2
- package/dist/web/app.js +1 -1
- package/package.json +3 -3
- package/resources/agent-template/package-lock.json +4 -6
- package/resources/agent-template/package.json +1 -2
package/dist/bin/preview.js
CHANGED
|
@@ -995,9 +995,7 @@ function requestFailure(cause) {
|
|
|
995
995
|
}
|
|
996
996
|
function publicProject(config) {
|
|
997
997
|
return {
|
|
998
|
-
buddyId: config.buddyId
|
|
999
|
-
...config.model === void 0 ? {} : { model: config.model },
|
|
1000
|
-
datasets: (config.datasets ?? []).map(({ id, purpose }) => ({ id, purpose }))
|
|
998
|
+
buddyId: config.buddyId
|
|
1001
999
|
};
|
|
1002
1000
|
}
|
|
1003
1001
|
async function startPreviewControlServer(options) {
|