接口 PlanToHint
- 所有已知实现类:
DefaultPlanToHint
public interface PlanToHint
Interface for generating contextual hints based on the current plan state.
Implementations analyze the plan and its subtasks to generate appropriate guidance messages that help the agent understand what actions to take next.
-
方法概要
修饰符和类型方法说明default StringgenerateHint(Plan plan) Generate a hint message based on the current plan state.generateHint(Plan plan, PlanNotebook planNotebook) Generate a hint message based on the current plan state with planNoteBook control.
-
方法详细资料
-
generateHint
Generate a hint message based on the current plan state.- 参数:
plan- The current plan (can be null if no plan exists)- 返回:
- The generated hint message, or null if no hint is applicable
-
generateHint
Generate a hint message based on the current plan state with planNoteBook control.- 参数:
plan- The current plan (can be null if no plan exists)planNotebook- related planNoteBook configuration- 返回:
- The generated hint message, or null if no hint is applicable
-