n8n
Version:
n8n Workflow Automation Tool
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;
}