Class AgentInvocationTimelineResponse

java.lang.Object
com.flowable.platform.service.agent.AgentInvocationTimelineResponse

public class AgentInvocationTimelineResponse extends Object
Response object representing a single invocation within an agent instance timeline. An invocation represents a complete interaction cycle with the agent.
Author:
Filip Hrisafov
  • Field Details

  • Constructor Details

    • AgentInvocationTimelineResponse

      public AgentInvocationTimelineResponse()
  • Method Details

    • getId

      public String getId()
    • setId

      public void setId(String id)
    • getStartTime

      public Instant getStartTime()
    • setStartTime

      public void setStartTime(Instant startTime)
    • getEndTime

      public Instant getEndTime()
    • setEndTime

      public void setEndTime(Instant endTime)
    • getOperationKey

      public String getOperationKey()
    • setOperationKey

      public void setOperationKey(String operationKey)
    • getPromptTokenCount

      public Integer getPromptTokenCount()
    • setPromptTokenCount

      public void setPromptTokenCount(Integer promptTokenCount)
    • getOutputTokenCount

      public Integer getOutputTokenCount()
    • setOutputTokenCount

      public void setOutputTokenCount(Integer outputTokenCount)
    • getExchanges

      public List<AgentExchangeTimelineResponse> getExchanges()
    • setExchanges

      public void setExchanges(List<AgentExchangeTimelineResponse> exchanges)