File size: 248 Bytes
268baab
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from dataclasses import dataclass

def _logging_callback_placeholder(*_):
    pass

def _deduplication_callback_placeholder(*_) -> bool:
    return False

@dataclass
class ProcessingResult:
    chunks: list[dict]
    source: str 
    lang:   str