Package-level declarations

Types

Link copied to clipboard
class PlanCompletionEvaluationCompletedContext(val eventId: String, val executionInfo: AgentExecutionInfo, val context: AIAgentContext, val state: Any, val plan: Any, val isCompleted: Boolean, val stepIndex: Int) : PlannerEventContext

Represents the context for an isPlanCompleted check completed event.

Link copied to clipboard
class PlanCompletionEvaluationStartingContext(val eventId: String, val executionInfo: AgentExecutionInfo, val context: AIAgentContext, val state: Any, val plan: Any, val stepIndex: Int) : PlannerEventContext

Represents the context for an isPlanCompleted check starting event.

Link copied to clipboard
class PlanCreationCompletedContext(val eventId: String, val executionInfo: AgentExecutionInfo, val context: AIAgentContext, val state: Any, val currentPlan: Any?, val newPlan: Any, val stepIndex: Int) : PlannerEventContext

Represents the context for a buildPlan operation completed event.

Link copied to clipboard
class PlanCreationStartingContext(val eventId: String, val executionInfo: AgentExecutionInfo, val context: AIAgentContext, val state: Any, val currentPlan: Any?, val stepIndex: Int) : PlannerEventContext

Represents the context for a buildPlan operation starting event.

Link copied to clipboard

Defines the context specifically for handling planner-related events within the AI agent framework. Extends the base event handler context to include functionality and behavior dedicated to managing the lifecycle and operations of planner agents.

Link copied to clipboard
class StepExecutionCompletedContext(val eventId: String, val executionInfo: AgentExecutionInfo, val context: AIAgentContext, val state: Any, val plan: Any, val stepIndex: Int) : PlannerEventContext

Represents the context for an executeStep operation completed event.

Link copied to clipboard
class StepExecutionStartingContext(val eventId: String, val executionInfo: AgentExecutionInfo, val context: AIAgentContext, val state: Any, val plan: Any, val stepIndex: Int) : PlannerEventContext

Represents the context for an executeStep operation starting event.