Interface AgentConversationTraceWithRequest

interface AgentConversationTraceWithRequest {
    agentName?: string;
    conversationId: string;
    createdAt: string;
    requests: AgentRequestTrace[];
    updatedAt: string;
    workflowName?: string;
}

Properties

agentName?: string
conversationId: string
createdAt: string
requests: AgentRequestTrace[]
updatedAt: string
workflowName?: string