|
1
|
"""Document processors for ingesting files into knowledge graphs.""" |
|
2
|
|
|
3
|
from video_processor.processors.base import ( |
|
4
|
DocumentChunk, |
|
5
|
DocumentProcessor, |
|
6
|
get_processor, |
|
7
|
list_supported_extensions, |
|
8
|
register_processor, |
|
9
|
) |
|
10
|
|
|
11
|
__all__ = [ |
|
12
|
"DocumentChunk", |
|
13
|
"DocumentProcessor", |
|
14
|
"get_processor", |
|
15
|
"list_supported_extensions", |
|
16
|
"register_processor", |
|
17
|
] |
|
18
|
|
|
19
|
# Auto-register built-in processors on import |
|
20
|
from video_processor.processors import ( |
|
21
|
markdown_processor, # noqa: F401, E402 |
|
22
|
pdf_processor, # noqa: F401, E402 |
|
23
|
) |
|
24
|
|