mirror of
https://github.com/OpenSPG/openspg.git
synced 2025-07-28 11:32:37 +00:00
14 lines
239 B
Python
14 lines
239 B
Python
|
|
from knext.operator.op import BaseOp, LinkOp, ExtractOp, FuseOp, PromptOp
|
|
from knext.operator.builtin.auto_prompt import SPOPrompt
|
|
|
|
|
|
__all__ = [
|
|
"BaseOp",
|
|
"ExtractOp",
|
|
"LinkOp",
|
|
"FuseOp",
|
|
"PromptOp",
|
|
"SPOPrompt"
|
|
]
|