Akshay66777's picture
AgentScope Gradio chat app — ZeroGPU-ready
9792ea7 verified
Raw
History Blame Contribute Delete
342 Bytes
# -*- coding: utf-8 -*-
"""File parser implementations for the RAG indexing pipeline."""
from ._base import ParserBase
from ._image import ImageParser
from ._pdf import PDFParser
from ._ppt import PPTParser
from ._text import TextParser
__all__ = [
"ParserBase",
"PDFParser",
"PPTParser",
"ImageParser",
"TextParser",
]