mirror of
https://github.com/LukeHagar/comfy-deploy-python.git
synced 2025-12-06 04:19:25 +00:00
14 lines
397 B
Bash
14 lines
397 B
Bash
#!/bin/bash
|
|
|
|
# Install the speakeasy CLI
|
|
curl -fsSL https://raw.githubusercontent.com/speakeasy-api/speakeasy/main/install.sh | sh
|
|
|
|
# Setup samples directory
|
|
rmdir samples || true
|
|
mkdir samples
|
|
|
|
python -m pip install --upgrade pip
|
|
pip install -e .
|
|
|
|
# Generate starter usage sample with speakeasy
|
|
speakeasy generate usage -s https://www.comfydeploy.com/api/openapi.json -l python -o samples/root.py |