add heavy loggin

This commit is contained in:
2026-03-26 10:59:56 -03:00
parent a85722f96a
commit beb0416280
27 changed files with 502 additions and 64 deletions

View File

@@ -170,19 +170,6 @@ export interface SourceBrandSighting {
created_at: string | null;
}
export interface SourceJob {
job_id: string;
source_type: string;
chunk_count: number;
total_bytes: number;
}
export interface ChunkInfo {
filename: string;
key: string;
size_bytes: number;
}
export interface CreateJobRequest {
source_asset_id: string;
preset_id: string | null;
@@ -220,6 +207,19 @@ export interface WorkerStatus {
gpu_available: boolean;
}
export interface SourceJob {
job_id: string;
source_type: string;
chunk_count: number;
total_bytes: number;
}
export interface ChunkInfo {
filename: string;
key: string;
size_bytes: number;
}
export interface ChunkEvent {
sequence: number;
status: string;