cache_key for workflow creation is still optional (#3602)

This commit is contained in:
Shuchang Zheng
2025-10-02 18:45:54 -07:00
committed by GitHub
parent 84d88cdf3f
commit dd235e6ce4

View File

@@ -525,7 +525,7 @@ class WorkflowCreateYAMLRequest(BaseModel):
status: WorkflowStatus = WorkflowStatus.published
run_with: str | None = None
ai_fallback: bool = False
cache_key: str = "default"
cache_key: str | None = "default"
run_sequentially: bool = False
sequential_key: str | None = None