from notte_sdk import NotteClient
notte = NotteClient()
# retrieve the workflow
workflow = notte.Workflow("<workflow_id>")
# Run the workflow, providing variables
response = workflow.run(url="https://shop.notte.cc/")
print(f"Workflow completed with result: {response.result}")