接口 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 String
    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

      default String generateHint(Plan plan)
      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

      String generateHint(Plan plan, PlanNotebook planNotebook)
      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