Interface TrackAgentSubTaskDto

Data transfer object for tracking agent sub tasks

interface TrackAgentSubTaskDto {
    agentRequestId: string;
    creditsToRedeem?: number;
    description?: string;
    status?: AgentTaskStatus;
    tag?: string;
}

Properties

agentRequestId: string

The unique identifier of the agent task

creditsToRedeem?: number

The number of credits burned in this agent sub task (optional)

Default Value

0
description?: string

A description of this agent sub task (optional)

The status of the agent sub task (optional)

tag?: string

A tag to categorize this agent sub task (optional)