mirror of
https://github.com/johndoe6345789/AutoMetabuilder.git
synced 2026-05-04 10:44:55 +00:00
4776082c34
Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
8 lines
172 B
Python
8 lines
172 B
Python
"""Workflow plugin: get string length."""
|
|
|
|
|
|
def run(_runtime, inputs):
|
|
"""Get length of a string."""
|
|
text = inputs.get("text", "")
|
|
return {"result": len(text)}
|