mirror of https://github.com/langgenius/dify.git
knowledge node
This commit is contained in:
parent
7f7269d261
commit
7372776992
|
|
@ -1,5 +1,13 @@
|
|||
from core.workflow.entities.base_node_data_entities import BaseNodeData
|
||||
from core.workflow.entities.node_entities import NodeRunResult
|
||||
from core.workflow.entities.variable_pool import VariablePool
|
||||
from core.workflow.nodes.base_node import BaseNode
|
||||
|
||||
|
||||
class KnowledgeRetrievalNode(BaseNode):
|
||||
pass
|
||||
def _run(self, variable_pool: VariablePool) -> NodeRunResult:
|
||||
pass
|
||||
|
||||
@classmethod
|
||||
def _extract_variable_selector_to_variable_mapping(cls, node_data: BaseNodeData) -> dict[str, list[str]]:
|
||||
pass
|
||||
|
|
|
|||
Loading…
Reference in New Issue