Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions dimos/core/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,9 @@
TypeVar,
)

from dimos.core.o3dpickle import register_picklers

if TYPE_CHECKING:
from collections.abc import Callable

# injects pickling system into o3d
register_picklers()
T = TypeVar("T")

from typing import ParamSpec, TypeVar
Expand Down
3 changes: 3 additions & 0 deletions dimos/core/module_coordinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ def __init__(
self._deployed_modules = {}

def start(self) -> None:
from dimos.core.o3dpickle import register_picklers

register_picklers()
for m in self._managers.values():
m.start()

Expand Down
Loading