When you find a useful flow in the Marketplace, you can save it locally for customization:
Python
Copy
from mira_sdk import MiraClient# Initialize clientclient = MiraClient(config={"API_KEY": "YOUR_API_KEY"})# Get the flow you want to customizeflow = client.flow.get("author/flow_name")# Save to local YAML fileflow.save("/path/to/flow.yaml")