Files
comfy-deploy-python/USAGE.md
bennykok 6ea0b09d80 init
2024-07-16 14:45:28 -07:00

284 B

import comfydeploy

s = comfydeploy.ComfyDeploy(
    bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
)


res = s.run.get(run_id='<value>')

if res.object is not None:
    # handle response
    pass