Skip to content
Closed
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
1 change: 0 additions & 1 deletion dimos/agents/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ def on_system_modules(self, modules: list[RPCClient]) -> None:
model = MockModel(json_path=self.config.model_fixture)

with self._lock:
# Here to prevent unwanted imports in the file.
from langchain.agents import create_agent

self._state_graph = create_agent(
Expand Down
1 change: 0 additions & 1 deletion dimos/agents/skills/navigation.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ def __init__(self) -> None:
super().__init__()
self._skill_started = False

# Here to prevent unwanted imports in the file.
from dimos.models.vl.qwen import QwenVlModel

self._vl_model = QwenVlModel()
Expand Down
1 change: 0 additions & 1 deletion dimos/agents/skills/person_follow.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,6 @@ def _follow_person(self, query: str, initial_bbox: BBox) -> str:

with self._lock:
if self._tracker is None:
# Here to prevent unwanted imports in the file.
from dimos.models.segmentation.edge_tam import EdgeTAMProcessor

self._tracker = EdgeTAMProcessor()
Expand Down
1 change: 0 additions & 1 deletion dimos/agents/web_human_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ def start(self) -> None:

normalizer = AudioNormalizer()

# Here to prevent unwanted imports in the file.
from dimos.stream.audio.stt.node_whisper import WhisperNode

stt_node = WhisperNode()
Expand Down
1 change: 0 additions & 1 deletion dimos/agents_deprecated/memory/spatial_vector_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ def __init__( # type: ignore[no-untyped-def]
"""
self.collection_name = collection_name

# Here to prevent unwanted imports in the file.
import chromadb

# Use provided client or create in-memory client
Expand Down
3 changes: 0 additions & 3 deletions dimos/models/vl/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ def vlm_detection_to_detection2d(
Returns:
Detection2DBBox instance or None if invalid
"""
# Here to prevent unwanted imports in the file.
from dimos.perception.detection.type import Detection2DBBox

# Validate list/tuple structure
Expand Down Expand Up @@ -255,7 +254,6 @@ def query_json(self, image: Image, query: str) -> dict: # type: ignore[type-arg
def query_detections(
self, image: Image, query: str, **kwargs: object
) -> ImageDetections2D[Detection2DBBox]:
# Here to prevent unwanted imports in the file.
from dimos.perception.detection.type import ImageDetections2D

full_query = f"""show me bounding boxes in pixels for this query: `{query}`
Expand Down Expand Up @@ -316,7 +314,6 @@ def query_points(
Returns:
ImageDetections2D containing Detection2DPoint instances
"""
# Here to prevent unwanted imports in the file.
from dimos.perception.detection.type import ImageDetections2D

full_query = f"""Show me point coordinates in pixels for this query: `{query}`
Expand Down