defualt res 2048

This commit is contained in:
Michael Pilosov 2026-05-16 19:20:09 -06:00
parent 3f24ce2f80
commit 606ccda721
4 changed files with 8 additions and 5 deletions

View File

@ -11,7 +11,7 @@ BLUR ?= 0
.DEFAULT_GOAL := help
.PHONY: help build run up stop down logs log ps test test-mask dev sync shell clean fmt testpub
.PHONY: help build run up stop down logs log ps test test-mask dev sync shell clean fmt testpub bump
help: ## Show this help
@grep -E '^[a-zA-Z_-]+:.*?## ' $(MAKEFILE_LIST) \
@ -57,6 +57,9 @@ clean: ## Stop the service and remove build artifacts
-$(COMPOSE) down
rm -f $(OUTPUT) mask.png
bump: ## Bump the patch version in pyproject.toml (0.0.1 -> 0.0.2)
uv version --bump patch
testpub: ## Publish dist/ to TestPyPI (UV_PUBLISH_TOKEN from .env)
uv build
set -a && . ./.env && set +a && \

View File

@ -1,6 +1,6 @@
[project]
name = "rmbg-as-a-service"
version = "0.0.1"
version = "0.0.2"
description = "Background removal as a GPU-accelerated API"
readme = "README.md"
requires-python = ">=3.12"

View File

@ -56,8 +56,8 @@
<select id="resolution">
<option value="1024">1024</option>
<option value="1536">1536</option>
<option value="2048">2048</option>
<option value="2560" selected>2560</option>
<option value="2048" selected>2048</option>
<option value="2560">2560</option>
</select>
</div>
</div>

2
uv.lock generated
View File

@ -1163,7 +1163,7 @@ wheels = [
[[package]]
name = "rmbg-as-a-service"
version = "0.0.1"
version = "0.0.2"
source = { editable = "." }
dependencies = [
{ name = "einops" },