mirror of
https://github.com/langgenius/dify.git
synced 2026-02-12 05:54:24 +08:00
The frontend and backend implementation for the human input node. Co-authored-by: twwu <twwu@dify.ai> Co-authored-by: JzoNg <jzongcode@gmail.com> Co-authored-by: yyh <92089059+lyzno1@users.noreply.github.com> Co-authored-by: zhsama <torvalds@linux.do>
14 lines
398 B
Python
14 lines
398 B
Python
from __future__ import annotations
|
|
|
|
from collections.abc import Sequence
|
|
from typing import Protocol
|
|
|
|
from core.entities.execution_extra_content import ExecutionExtraContentDomainModel
|
|
|
|
|
|
class ExecutionExtraContentRepository(Protocol):
|
|
def get_by_message_ids(self, message_ids: Sequence[str]) -> list[list[ExecutionExtraContentDomainModel]]: ...
|
|
|
|
|
|
__all__ = ["ExecutionExtraContentRepository"]
|