This commit is contained in:
bennykok
2024-07-16 14:45:28 -07:00
commit 6ea0b09d80
207 changed files with 8190 additions and 0 deletions

17
USAGE.md Normal file
View File

@@ -0,0 +1,17 @@
<!-- Start SDK Example Usage [usage] -->
```python
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
```
<!-- End SDK Example Usage [usage] -->