Skip to content

AfterLLMCallAction

AfterLLMCallAction = { action: "continue"; } | { action: "append_messages"; messages: LLMMessage[]; } | { action: "modify_and_continue"; modifiedMessage: string; } | { action: "append_and_modify"; messages: LLMMessage[]; modifiedMessage: string; }

Defined in: agent/hooks.ts:519

Action returned by afterLLMCall controller.