add embedded python to system state

This commit is contained in:
bymyself
2025-06-21 16:29:40 -07:00
parent 75ecb31f8c
commit 38fefde06d
3 changed files with 16 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: openapi.yaml
# timestamp: 2025-06-17T22:03:51+00:00
# timestamp: 2025-06-21T23:28:48+00:00
from __future__ import annotations
@@ -419,6 +419,10 @@ class ComfyUISystemState(BaseModel):
pip_packages: Optional[Dict[str, str]] = Field(
None, description="Map of installed pip packages to their versions"
)
embedded_python: Optional[bool] = Field(
None,
description="Whether ComfyUI is running from an embedded Python distribution",
)
class BatchExecutionRecord(BaseModel):