interface AgentRequestTrace {
    appConfig: Record<string, any>;
    conversationId: string;
    createdAt: string;
    requestId: string;
    requestInput: AgentRequestContent<Record<string, any>>;
    responseOutput: AgentResponse<Record<string, any>>;
    traceId?: string;
    tracePreviewUrl?: string;
    updatedAt: string;
}

Properties

appConfig: Record<string, any>
conversationId: string
createdAt: string
requestId: string
requestInput: AgentRequestContent<Record<string, any>>
responseOutput: AgentResponse<Record<string, any>>
traceId?: string
tracePreviewUrl?: string
updatedAt: string