File size: 431 Bytes
d714fad
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export declare class EndpointCall {
    id: string;
    tenant_id: string;
    kind: 'api' | 'ai';
    endpoint_id: string | null;
    endpoint_name: string;
    endpoint_slug: string;
    agent_id: string | null;
    ai_mode: boolean;
    model_used: string | null;
    provider_used: string | null;
    tokens_used: number;
    duration_ms: number;
    success: boolean;
    error_message: string | null;
    created_at: Date;
}