@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.cjs +2 -2
- package/index.cjs.map +1 -1
- package/index.d.cts +4 -0
- package/index.d.ts +4 -0
- package/index.global.js +2 -2
- package/index.global.js.map +1 -1
- package/index.js +2 -2
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/skills/ax-agent-optimize.md +1 -1
- package/skills/ax-agent.md +16 -2
- package/skills/ax-ai.md +1 -1
- package/skills/ax-flow.md +1 -1
- package/skills/ax-gen.md +1 -1
- package/skills/ax-gepa.md +1 -1
- package/skills/ax-learn.md +1 -1
- package/skills/ax-llm.md +1 -1
- package/skills/ax-signature.md +1 -1
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. */
|