Merge branch 'dev' into refactor/logging

This commit is contained in:
2025-11-05 12:40:31 +01:00
13 changed files with 129 additions and 152 deletions

View File

@@ -8,7 +8,6 @@ from spade.message import Message
from control_backend.agents import BaseAgent
from control_backend.core.config import settings
from control_backend.core.zmq_context import context as zmq_context
from .speech_recognizer import SpeechRecognizer
@@ -67,7 +66,7 @@ class TranscriptionAgent(BaseAgent):
return await super().stop()
def _connect_audio_in_socket(self):
self.audio_in_socket = zmq_context.socket(zmq.SUB)
self.audio_in_socket = azmq.Context.instance().socket(zmq.SUB)
self.audio_in_socket.setsockopt_string(zmq.SUBSCRIBE, "")
self.audio_in_socket.connect(self.audio_in_address)