@ax-llm/ax 19.0.38 → 19.0.39

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/index.d.cts CHANGED
@@ -10212,6 +10212,10 @@ type AxAgentInputUpdateCallback<IN extends AxGenIn> = (currentInputs: Readonly<I
10212
10212
  type AxAgentTurnCallbackArgs = {
10213
10213
  /** 1-based actor turn number. */
10214
10214
  turn: number;
10215
+ /** Number of action log entries recorded after processing this turn. */
10216
+ actionLogEntryCount: number;
10217
+ /** Number of guidance log entries recorded after processing this turn. */
10218
+ guidanceLogEntryCount: number;
10215
10219
  /** Full actor AxGen output for the turn, including javascriptCode and any actor fields. */
10216
10220
  actorResult: Record<string, unknown>;
10217
10221
  /** Normalized JavaScript that was executed for this turn. */
package/index.d.ts CHANGED
@@ -10212,6 +10212,10 @@ type AxAgentInputUpdateCallback<IN extends AxGenIn> = (currentInputs: Readonly<I
10212
10212
  type AxAgentTurnCallbackArgs = {
10213
10213
  /** 1-based actor turn number. */
10214
10214
  turn: number;
10215
+ /** Number of action log entries recorded after processing this turn. */
10216
+ actionLogEntryCount: number;
10217
+ /** Number of guidance log entries recorded after processing this turn. */
10218
+ guidanceLogEntryCount: number;
10215
10219
  /** Full actor AxGen output for the turn, including javascriptCode and any actor fields. */
10216
10220
  actorResult: Record<string, unknown>;
10217
10221
  /** Normalized JavaScript that was executed for this turn. */