feat(imajin): update skip processing default to true

This commit is contained in:
Lilith 2026-01-10 23:29:57 -08:00
parent c3a838adad
commit 14182c12b2
2 changed files with 1 additions and 1 deletions

View file

@ -31,7 +31,7 @@ class GenerateRequest(BaseModel):
# Optional overrides
model_override: str | None = Field(None, description="Force specific model")
skip_processing: bool = Field(False, description="Skip post-processing step")
skip_processing: bool = Field(True, description="Skip post-processing step (processing service /process endpoint not yet implemented)")
class GenerateResponse(BaseModel):