AxAgentActorTurnCallbackArgs type AxAgentActorTurnCallbackArgs = object ; Defined in: https://github.com/ax-llm/ax/blob/e4219a44b7581a55a40d9dd62d2c281062ff078d/src/ax/agent/agentInternal/agentStateTypes.ts#L265
Properties
actionLogEntryCount actionLogEntryCount : number ; Defined in: https://github.com/ax-llm/ax/blob/e4219a44b7581a55a40d9dd62d2c281062ff078d/src/ax/agent/agentInternal/agentStateTypes.ts#L271
Number of action log entries recorded after processing this turn.
chatLogMessages? optional chatLogMessages : ReadonlyArray < {
content : string ;
role : string ;
} > ; Defined in: https://github.com/ax-llm/ax/blob/e4219a44b7581a55a40d9dd62d2c281062ff078d/src/ax/agent/agentInternal/agentStateTypes.ts#L294
Raw ChatML conversation for this turn (system, user, assistant). Only populated when an actor turn callback is set.
code Defined in: https://github.com/ax-llm/ax/blob/e4219a44b7581a55a40d9dd62d2c281062ff078d/src/ax/agent/agentInternal/agentStateTypes.ts#L277
Normalized runtime code that was executed for this turn.
executorResult executorResult : Record < string , unknown >; Defined in: https://github.com/ax-llm/ax/blob/e4219a44b7581a55a40d9dd62d2c281062ff078d/src/ax/agent/agentInternal/agentStateTypes.ts#L275
Full actor AxGen output for the turn, including the runtime code field and any actor fields.
guidanceLogEntryCount guidanceLogEntryCount : number ; Defined in: https://github.com/ax-llm/ax/blob/e4219a44b7581a55a40d9dd62d2c281062ff078d/src/ax/agent/agentInternal/agentStateTypes.ts#L273
Number of guidance log entries recorded after processing this turn.
isError Defined in: https://github.com/ax-llm/ax/blob/e4219a44b7581a55a40d9dd62d2c281062ff078d/src/ax/agent/agentInternal/agentStateTypes.ts#L286
True when the turn recorded an error output.
model? Defined in: https://github.com/ax-llm/ax/blob/e4219a44b7581a55a40d9dd62d2c281062ff078d/src/ax/agent/agentInternal/agentStateTypes.ts#L292
Model used for this turn, when explicitly set via executorModelPolicy.
output Defined in: https://github.com/ax-llm/ax/blob/e4219a44b7581a55a40d9dd62d2c281062ff078d/src/ax/agent/agentInternal/agentStateTypes.ts#L284
Action-log-safe runtime output string after formatting/truncation.
result Defined in: https://github.com/ax-llm/ax/blob/e4219a44b7581a55a40d9dd62d2c281062ff078d/src/ax/agent/agentInternal/agentStateTypes.ts#L282
Raw runtime execution result before formatting or truncation.
For policy-violation turns and completion-signal turns, this is undefined.
stage stage : AxAgentContextStage ; Defined in: https://github.com/ax-llm/ax/blob/e4219a44b7581a55a40d9dd62d2c281062ff078d/src/ax/agent/agentInternal/agentStateTypes.ts#L267
Actor stage that produced this turn.
thought? optional thought : string ; Defined in: https://github.com/ax-llm/ax/blob/e4219a44b7581a55a40d9dd62d2c281062ff078d/src/ax/agent/agentInternal/agentStateTypes.ts#L288
Thought text returned by the actor AxGen when available.
turn Defined in: https://github.com/ax-llm/ax/blob/e4219a44b7581a55a40d9dd62d2c281062ff078d/src/ax/agent/agentInternal/agentStateTypes.ts#L269
1-based actor turn number.
usage? optional usage : AxProgramUsage []; Defined in: https://github.com/ax-llm/ax/blob/e4219a44b7581a55a40d9dd62d2c281062ff078d/src/ax/agent/agentInternal/agentStateTypes.ts#L290
Token usage for this turn only.