@n8n-plus/n8n-plus
Version:
n8n Workflow Automation Tool (plus edition)
17 lines (16 loc) • 484 B
TypeScript
import { Project, WithTimestampsAndStringId } from '@n8n/db';
import { Agent } from './agent.entity';
export declare class AgentExecutionThread extends WithTimestampsAndStringId {
agent: Agent;
agentId: string;
agentName: string;
title: string | null;
emoji: string | null;
project: Project;
projectId: string;
sessionNumber: number;
totalPromptTokens: number;
totalCompletionTokens: number;
totalCost: number;
totalDuration: number;
}