Merge pull request #296 from presenton/feat/adds-trigger-webhook-field

feat(fastapi): adds trigger_webhook option in generate request
This commit is contained in:
Saurav Niraula 2025-09-18 15:41:00 +05:45 committed by GitHub
commit 09581c694e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -37,3 +37,6 @@ class GeneratePresentationRequest(BaseModel):
export_as: Literal["pptx", "pdf"] = Field(
default="pptx", description="Export format"
)
trigger_webhook: bool = Field(
default=False, description="Whether to trigger subscribed webhooks"
)