openspg/python/knext/api/component.py

18 lines
462 B
Python
Raw Normal View History

2023-12-08 11:25:26 +08:00
from knext.component.builder import UserDefinedExtractor, LLMBasedExtractor
from knext.component.builder import SPGTypeMapping, RelationMapping
from knext.component.builder import CsvSourceReader
from knext.component.builder import KGSinkWriter
from knext.component.base import Component
__all__ = [
"UserDefinedExtractor",
"LLMBasedExtractor",
"CsvSourceReader",
"SPGTypeMapping",
"RelationMapping",
"KGSinkWriter",
"Component"
]