Spaces:
Running
Running
File size: 390 Bytes
d714fad | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | export declare class ImageAgent {
id: string;
tenant_id: string;
name: string;
description: string;
provider: string;
model: string;
api_key_encrypted: string;
prompt_key: string;
default_width: number;
default_height: number;
banner_width: number;
banner_height: number;
is_active: boolean;
created_at: Date;
updated_at: Date;
}
|