Debugger Continuity (BE) (#3314)

This commit is contained in:
Jonathan Dobson
2025-08-28 20:05:24 -04:00
committed by GitHub
parent 916ab6c067
commit 1067e9a076
12 changed files with 306 additions and 2 deletions

View File

@@ -6,6 +6,15 @@ from pydantic import BaseModel, ConfigDict
DebugSessionStatus = t.Literal["created", "completed"]
class BlockRun(BaseModel):
model_config = ConfigDict(from_attributes=True)
block_label: str
output_parameter_id: str
workflow_run_id: str
created_at: datetime
class DebugSession(BaseModel):
model_config = ConfigDict(from_attributes=True)