@mindstudio-ai/remy 0.1.183 → 0.1.184

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/headless.js CHANGED
@@ -7791,7 +7791,11 @@ var HeadlessSession = class {
7791
7791
  clearSession(this.state);
7792
7792
  this.state.models = models && Object.keys(models).length > 0 ? models : void 0;
7793
7793
  saveSession(this.state);
7794
- return {};
7794
+ return {
7795
+ ...this.state.models && { models: this.state.models },
7796
+ modelSurfaces: MODEL_SURFACES,
7797
+ allowedModelsByType: ALLOWED_MODELS_BY_TYPE
7798
+ };
7795
7799
  }
7796
7800
  /** Cancel the running turn and drain the queue. Returns the drained items. */
7797
7801
  handleCancel() {
package/dist/index.js CHANGED
@@ -8580,7 +8580,11 @@ var init_headless = __esm({
8580
8580
  clearSession(this.state);
8581
8581
  this.state.models = models && Object.keys(models).length > 0 ? models : void 0;
8582
8582
  saveSession(this.state);
8583
- return {};
8583
+ return {
8584
+ ...this.state.models && { models: this.state.models },
8585
+ modelSurfaces: MODEL_SURFACES,
8586
+ allowedModelsByType: ALLOWED_MODELS_BY_TYPE
8587
+ };
8584
8588
  }
8585
8589
  /** Cancel the running turn and drain the queue. Returns the drained items. */
8586
8590
  handleCancel() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindstudio-ai/remy",
3
- "version": "0.1.183",
3
+ "version": "0.1.184",
4
4
  "description": "MindStudio coding agent",
5
5
  "repository": {
6
6
  "type": "git",