Tai Truong
fix readme
d202ada
raw
history blame contribute delete
403 Bytes
from langflow.components.prompts import PromptComponent
from langflow.schema.message import Message
from tests.integration.utils import run_single_component
async def test():
outputs = await run_single_component(PromptComponent, inputs={"template": "test {var1}", "var1": "from the var"})
assert isinstance(outputs["prompt"], Message)
assert outputs["prompt"].text == "test from the var"