mirror of
https://github.com/OpenSPG/openspg.git
synced 2025-07-28 11:32:37 +00:00
18 lines
502 B
Python
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",
|
|
]
|