diff --git a/src/types.ts b/src/types.ts index 6c90652..6808462 100644 --- a/src/types.ts +++ b/src/types.ts @@ -216,8 +216,8 @@ export type CodeEvaluationResult = { /** * Represents the output of each iteration of pilot's perform. - * @property contains the action and thoughts that were taken by the LLM - * @property the code that were created by the LLM from pilot's action + * @property plan contains the action and thoughts that were taken by the LLM + * @property code that was created by the LLM from pilot's action */ export type PilotStepReport = { plan: PilotStepPlan; @@ -233,8 +233,9 @@ export type PilotReport = { }; /** - * Represents the output of pilots createStepPlan method. - * @property report of pilot's actions (thoughts, actions, ect ....) + * Represents the output of pilot step plan. + * @property action The action that the LLM will take + * @property thoughts The thoughts of the LLM */ export type PilotStepPlan = { action: string; @@ -242,10 +243,10 @@ export type PilotStepPlan = { }; /** - * Represents the output of screen capturer createStepPlan method. - * @property snapshot of the currnet screen or undeifned - * @property view hierarchy of the current screen - * @property boolean indicating if snapshot is supported or not + * Represents the output a screen capture method. + * @property snapshot of the current screen or undefined + * @property viewHierarchy of the current screen + * @property isSnapshotImageAttached if the snapshot image is attached */ export type ScreenCapturerResult = { snapshot: string | undefined;