mirror of
https://github.com/johndoe6345789/AutoMetabuilder.git
synced 2026-05-06 19:49:38 +00:00
4776082c34
Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
8 lines
190 B
Python
8 lines
190 B
Python
"""Workflow plugin: convert string to lowercase."""
|
|
|
|
|
|
def run(_runtime, inputs):
|
|
"""Convert string to lowercase."""
|
|
text = inputs.get("text", "")
|
|
return {"result": text.lower()}
|