Spaces:
Running
Running
| 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; | |
| } | |