openspg/python/knext/api/component.py
2023-12-15 17:33:54 +08:00

18 lines
502 B
Python

from knext.component.builder import UserDefinedExtractor, LLMBasedExtractor
from knext.component.builder import SPGTypeMapping, RelationMapping, SubGraphMapping
from knext.component.builder import CsvSourceReader
from knext.component.builder import KGSinkWriter
from knext.component.base import Component
__all__ = [
"UserDefinedExtractor",
"LLMBasedExtractor",
"CsvSourceReader",
"SPGTypeMapping",
"RelationMapping",
"SubGraphMapping",
"KGSinkWriter",
"Component",
]