mirror of
https://github.com/langgenius/dify.git
synced 2026-06-10 01:41:16 +08:00
Co-authored-by: Copilot <copilot@github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
7 lines
283 B
Python
7 lines
283 B
Python
from agenton_collections.layers.plain import PLAIN_PROMPT_LAYER_TYPE_ID, PromptLayer
|
|
|
|
|
|
def test_prompt_layer_type_id_constant_matches_implementation_class() -> None:
|
|
assert PLAIN_PROMPT_LAYER_TYPE_ID == "plain.prompt"
|
|
assert PromptLayer.type_id == PLAIN_PROMPT_LAYER_TYPE_ID
|