Spaces:
Paused
Paused
| # Exit on error | |
| set -e | |
| echo "π Building and publishing litellm-proxy-extras" | |
| # Navigate to litellm-proxy-extras directory | |
| cd "$(dirname "$0")/../litellm-proxy-extras" | |
| # Build the package | |
| echo "π¦ Building package..." | |
| poetry build | |
| # Publish to PyPI | |
| echo "π Publishing to PyPI..." | |
| poetry publish | |
| echo "β Done! Package published successfully" |