types
Shared types for the worker registry.
- class pipecat.registry.types.WorkerRegistryEntry(name: str, parent: str | None = None, active: bool = False, bridged: bool = False, started_at: float | None = None)[source]
Bases:
objectInformation about a worker in a registry snapshot.
- Parameters:
name – The worker’s name.
parent – Name of the parent worker, or None for root tasks.
active – Whether the worker is currently active.
bridged – Whether the worker is bridged.
started_at – Unix timestamp when the worker became ready.
- name: str
- parent: str | None = None
- active: bool = False
- bridged: bool = False
- started_at: float | None = None