Interface NestedOpInfo


public interface NestedOpInfo
Information about a nested operation within an agent execution. NestedOpInfo represents a single nested operation (such as a model call, database access, or tool call) that occurred during agent execution. It includes timing information, operation type, and operation-specific metadata.
  • Method Details

    • getStartTimeMillis

      long getStartTimeMillis()
      Gets the start time of this operation.
      Returns:
      start timestamp in milliseconds since epoch
    • getFinishTimeMillis

      long getFinishTimeMillis()
      Gets the finish time of this operation.
      Returns:
      finish timestamp in milliseconds since epoch
    • getType

      NestedOpType getType()
      Gets the type of this nested operation.
      Returns:
      the nested operation type
    • getInfo

      Map<String,Object> getInfo()
      Gets operation-specific metadata and information.
      Returns:
      map from string key to operation-specific value