chatbolt-dev / apps /knowledge-service /libs /shared /src /entities /ai-endpoint.entity.d.ts
MTayyaBH
Refactor code structure for improved readability and maintainability
d714fad
Raw
History Blame Contribute Delete
684 Bytes
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;
}