Spaces:
Sleeping
Sleeping
File size: 244 Bytes
2b7b752 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 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
|