@astralform/js 4.6.0 → 4.6.1

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/index.d.cts CHANGED
@@ -1278,6 +1278,12 @@ interface SendOptions extends ModelChoiceOptions {
1278
1278
  agentName?: string;
1279
1279
  uploadIds?: string[];
1280
1280
  planMode?: boolean;
1281
+ /**
1282
+ * Attach the image-generation tool to this turn. Per-message and off by
1283
+ * default — generating costs the developer real money at a third-party
1284
+ * provider. Gate the affordance on `AgentStatus.capabilities`.
1285
+ */
1286
+ imageMode?: boolean;
1281
1287
  /**
1282
1288
  * Start a durable long-horizon goal for this run (goal mode) — the text is the
1283
1289
  * goal objective the backend drives to completion. Omit for a normal turn.
package/dist/index.d.ts CHANGED
@@ -1278,6 +1278,12 @@ interface SendOptions extends ModelChoiceOptions {
1278
1278
  agentName?: string;
1279
1279
  uploadIds?: string[];
1280
1280
  planMode?: boolean;
1281
+ /**
1282
+ * Attach the image-generation tool to this turn. Per-message and off by
1283
+ * default — generating costs the developer real money at a third-party
1284
+ * provider. Gate the affordance on `AgentStatus.capabilities`.
1285
+ */
1286
+ imageMode?: boolean;
1281
1287
  /**
1282
1288
  * Start a durable long-horizon goal for this run (goal mode) — the text is the
1283
1289
  * goal objective the backend drives to completion. Omit for a normal turn.
package/dist/index.js CHANGED
@@ -2085,6 +2085,7 @@ var StreamManager = class {
2085
2085
  agentName: options?.agentName,
2086
2086
  uploadIds: options?.uploadIds,
2087
2087
  planMode: options?.planMode,
2088
+ imageMode: options?.imageMode,
2088
2089
  goal: options?.goal,
2089
2090
  provider: options?.provider,
2090
2091
  model: options?.model,