update organization API (#480)

This commit is contained in:
Kerem Yilmaz
2024-06-16 19:42:20 -07:00
committed by GitHub
parent af81fb7206
commit 10612f02fd
6 changed files with 60 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
from pydantic import BaseModel
class OrganizationUpdate(BaseModel):
organization_name: str | None = None
webhook_callback_url: str | None = None
max_steps_per_run: int | None = None
max_retries_per_step: int | None = None