Created a new transport param to inform if the camera input should be enabled.

This commit is contained in:
Filipi Fuchter
2025-03-11 11:33:24 -03:00
parent aab98b61a0
commit 689a844aaf

View File

@@ -19,6 +19,7 @@ from pipecat.utils.base_object import BaseObject
class TransportParams(BaseModel):
model_config = ConfigDict(arbitrary_types_allowed=True)
camera_in_enabled: bool = False
camera_out_enabled: bool = False
camera_out_is_live: bool = False
camera_out_width: int = 1024