Spaces:
Running
Running
File size: 684 Bytes
d714fad | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | export declare class AiEndpoint {
id: string;
tenant_id: string;
name: string;
slug: string;
description: string;
agent_id: string;
db_connection_id: string;
endpoint_url: string | null;
method: string;
headers: Record<string, string>;
body_schema: Record<string, any>;
sample_body: Record<string, any>;
query_text: string;
response_format: string;
ai_mode: boolean;
system_prompt: string;
query_endpoint_slug: string;
include_query_result: boolean;
sample_response: any;
enable_image_generation: boolean;
image_agent_id: string;
is_active: boolean;
created_at: Date;
updated_at: Date;
}
|