mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-07-29 23:01:38 +00:00
6 lines
152 B
Python
6 lines
152 B
Python
"""Module for extracting information."""
|
|
from .base import Extractor
|
|
from .summary import SummaryExtractor
|
|
|
|
__all__ = ["Extractor", "SummaryExtractor"]
|