square-agency-59624
09/18/2025, 5:12 PMancient-wolf-19325
09/18/2025, 5:12 PMfrom flytekit.configuration import Config
from flytekit.remote import FlyteRemote
remote = FlyteRemote(config=Config.auto(), default_project="my_project", default_domain="development")
flyte_wf = remote.fetch_workflow(name="workflows.example.wf")
execution = remote.execute(flyte_wf, inputs={"name": "Kermit"}, wait=True)
print(execution.outputs)
According to the documentation, you can also execute a locally imported workflow directly if it is available in your Python environment. See more details in the Flyte documentation.
Would you like more detail or examples for specific use cases?
Sources:
- Running and scheduling workflows
- Running workflows
- FlyteRemote API 👍 0 button 👎 0 button 💡 Hint: Mention @runllm in the thread for followups.square-agency-59624
09/18/2025, 5:33 PMancient-wolf-19325
09/18/2025, 5:33 PM