@mindstudio-ai/remy 0.1.183 → 0.1.185

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
@@ -3722,14 +3722,14 @@ ${appSpec}
3722
3722
  // src/models/surfaces.ts
3723
3723
  var MODEL_SURFACES = {
3724
3724
  parent: {
3725
- default: "claude-4-7-opus",
3725
+ default: "claude-4-8-opus",
3726
3726
  label: "Remy",
3727
3727
  description: "The main Remy agent you chat with about your product. Writes code and manages delegation to other agents.",
3728
3728
  modelType: "text",
3729
3729
  userPickable: true
3730
3730
  },
3731
3731
  visualDesignExpert: {
3732
- default: "claude-4-7-opus",
3732
+ default: "claude-4-8-opus",
3733
3733
  label: "Design Agent",
3734
3734
  description: "Designs your product's interfaces, including components, layouts, typography, color, and visual identity.",
3735
3735
  modelType: "text",
@@ -3796,6 +3796,7 @@ var MODEL_SURFACES = {
3796
3796
  };
3797
3797
  var ALLOWED_MODELS_BY_TYPE = {
3798
3798
  text: [
3799
+ "claude-4-8-opus",
3799
3800
  "claude-4-7-opus",
3800
3801
  "claude-4-6-opus",
3801
3802
  "claude-4-6-sonnet",
@@ -7791,7 +7792,11 @@ var HeadlessSession = class {
7791
7792
  clearSession(this.state);
7792
7793
  this.state.models = models && Object.keys(models).length > 0 ? models : void 0;
7793
7794
  saveSession(this.state);
7794
- return {};
7795
+ return {
7796
+ ...this.state.models && { models: this.state.models },
7797
+ modelSurfaces: MODEL_SURFACES,
7798
+ allowedModelsByType: ALLOWED_MODELS_BY_TYPE
7799
+ };
7795
7800
  }
7796
7801
  /** Cancel the running turn and drain the queue. Returns the drained items. */
7797
7802
  handleCancel() {
package/dist/index.js CHANGED
@@ -2034,14 +2034,14 @@ var init_surfaces = __esm({
2034
2034
  "use strict";
2035
2035
  MODEL_SURFACES = {
2036
2036
  parent: {
2037
- default: "claude-4-7-opus",
2037
+ default: "claude-4-8-opus",
2038
2038
  label: "Remy",
2039
2039
  description: "The main Remy agent you chat with about your product. Writes code and manages delegation to other agents.",
2040
2040
  modelType: "text",
2041
2041
  userPickable: true
2042
2042
  },
2043
2043
  visualDesignExpert: {
2044
- default: "claude-4-7-opus",
2044
+ default: "claude-4-8-opus",
2045
2045
  label: "Design Agent",
2046
2046
  description: "Designs your product's interfaces, including components, layouts, typography, color, and visual identity.",
2047
2047
  modelType: "text",
@@ -2108,6 +2108,7 @@ var init_surfaces = __esm({
2108
2108
  };
2109
2109
  ALLOWED_MODELS_BY_TYPE = {
2110
2110
  text: [
2111
+ "claude-4-8-opus",
2111
2112
  "claude-4-7-opus",
2112
2113
  "claude-4-6-opus",
2113
2114
  "claude-4-6-sonnet",
@@ -8580,7 +8581,11 @@ var init_headless = __esm({
8580
8581
  clearSession(this.state);
8581
8582
  this.state.models = models && Object.keys(models).length > 0 ? models : void 0;
8582
8583
  saveSession(this.state);
8583
- return {};
8584
+ return {
8585
+ ...this.state.models && { models: this.state.models },
8586
+ modelSurfaces: MODEL_SURFACES,
8587
+ allowedModelsByType: ALLOWED_MODELS_BY_TYPE
8588
+ };
8584
8589
  }
8585
8590
  /** Cancel the running turn and drain the queue. Returns the drained items. */
8586
8591
  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.185",
4
4
  "description": "MindStudio coding agent",
5
5
  "repository": {
6
6
  "type": "git",