mirror of
https://github.com/johndoe6345789/AutoMetabuilder.git
synced 2026-04-30 16:54:59 +00:00
8 lines
208 B
Python
8 lines
208 B
Python
"""Workflow plugin: read file."""
|
|
|
|
|
|
def run(runtime, inputs):
|
|
"""Read a file via tool runner."""
|
|
result = runtime.tool_runner.call("read_file", path=inputs.get("path"))
|
|
return {"content": result}
|