AxAgentPlaybookOptions
type AxAgentPlaybookOptions = object & Pick<AxPlaybookOptions,
| "verbose"
| "seed"
| "maxEpochs"
| "maxReflectorRounds"
| "maxSectionSize"
| "allowDynamicSections"
| "initialPlaybook"
| "auto">;Options for AxAgent.playbook(). Builds an AxPlaybook bound to an agent
stage (the actor by default). The evolution engine (ACE) is hidden, exactly
as in the standalone playbook() factory.
Type declaration
| Name | Type | Description |
|---|---|---|
apply? | boolean | Render the evolving playbook into the live stage. Defaults to true. |
studentAI? | Readonly<AxAIService> | - |
target? | "actor" | "responder" | Which agent stage to evolve a playbook for. Defaults to 'actor'. |
teacherAI? | Readonly<AxAIService> | - |