add cached steps flag to db (is_script_cached in Step) (#4202)

This commit is contained in:
Marc Kelechava
2025-12-04 13:47:46 -08:00
committed by GitHub
parent b9b3d9bb69
commit 944c95f456
6 changed files with 46 additions and 0 deletions

View File

@@ -71,6 +71,7 @@ class Step(BaseModel):
reasoning_token_count: int | None = None
cached_token_count: int | None = None
step_cost: float = 0
created_by: str | None = None
is_speculative: bool = False
speculative_original_status: StepStatus | None = None
speculative_llm_metadata: SpeculativeLLMMetadata | None = None