Spaces:
Running
on
CPU Upgrade
Regarding the RTC configuration , I am actually trying to host this on docker frontend and backend both as seperate services .
When I host both backend and frontend on different dockerfile and host them as seperate services using docker-compose , it does connect to myendpoints but my voice is not passed . Also I have used the huggingface turn server currently .
What do you mean your voice is not passed?
INFO: Will watch for changes in these directories: ['/app']
bot-api-service-dev | INFO: Uvicorn running on http://0.0.0.0:8000 (Press CTRL+C to quit)
bot-api-service-dev | INFO: Started reloader process [1] using StatReload
bot-api-service-dev | TTS Model loaded: KokoroTTSModel
bot-api-service-dev | INFO: Warming up VAD model.
bot-api-service-dev | INFO: VAD model warmed up.
bot-api-service-dev | Stream configuration:
bot-api-service-dev | - Modality: audio
bot-api-service-dev | - Mode: send-receive
bot-api-service-dev | - Handler: ReplyOnPause
bot-api-service-dev | INFO: Started server process [36]
bot-api-service-dev | INFO: Waiting for application startup.
bot-api-service-dev | INFO: Application startup complete.
bot-api-service-dev | TTS Model loaded: KokoroTTSModel
bot-api-service-dev | INFO: Warming up VAD model.
bot-api-service-dev | INFO: VAD model warmed up.
bot-api-service-dev | Stream configuration:
bot-api-service-dev | - Modality: audio
bot-api-service-dev | - Mode: send-receive
bot-api-service-dev | - Handler: ReplyOnPause
bot-api-service-dev | INFO: Visit https://fastrtc.org/userguide/api/ for WebRTC or Websocket API docs.
bot-api-service-dev | INFO: 192.xxx.xx.x:xxxxx - "OPTIONS /webrtc/offer HTTP/1.1" 200 OK
bot-api-service-dev | INFO: 192.xxx.xx.x:xxxxx - "POST /webrtc/offer HTTP/1.1" 200 OK
bot-api-service-dev | INFO: 192.xxx.xx.x:xxxxx - "GET /outputs?webrtc_id=ms6ui HTTP/1.1" 200 OK
bot-api-service-dev | Exception in callback Transaction.__retry()
bot-api-service-dev | handle: <TimerHandle when=562.534422331 Transaction.__retry()>
bot-api-service-dev | Traceback (most recent call last):
bot-api-service-dev | File "/usr/local/lib/python3.11/asyncio/selector_events.py", line 1196, in sendto
bot-api-service-dev | self._sock.sendto(data, addr)
bot-api-service-dev | ^^^^^^^^^^^^^^^^^
bot-api-service-dev | AttributeError: 'NoneType' object has no attribute 'sendto'
bot-api-service-dev |
bot-api-service-dev | During handling of the above exception, another exception occurred:
bot-api-service-dev |
bot-api-service-dev | Traceback (most recent call last):
bot-api-service-dev | File "/usr/local/lib/python3.11/asyncio/events.py", line 80, in _run
bot-api-service-dev | self._context.run(self._callback, *self._args)
bot-api-service-dev | File "/usr/local/lib/python3.11/site-packages/aioice/stun.py", line 312, in __retry
bot-api-service-dev | self.__protocol.send_stun(self.__request, self.__addr)
bot-api-service-dev | File "/usr/local/lib/python3.11/site-packages/aioice/ice.py", line 266, in send_stun
bot-api-service-dev | self.transport.sendto(bytes(message), addr)
bot-api-service-dev | File "/usr/local/lib/python3.11/asyncio/selector_events.py", line 1206, in sendto
bot-api-service-dev | self._fatal_error(
bot-api-service-dev | File "/usr/local/lib/python3.11/asyncio/selector_events.py", line 873, in _fatal_error
bot-api-service-dev | self._loop.call_exception_handler({
bot-api-service-dev | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
bot-api-service-dev | AttributeError: 'NoneType' object has no attribute 'call_exception_handler'
bot-api-service-dev | Exception in callback Transaction.__retry()
bot-api-service-dev | handle: <TimerHandle when=562.558408748 Transaction.__retry()>
bot-api-service-dev | Traceback (most recent call last):
bot-api-service-dev | File "/usr/local/lib/python3.11/asyncio/selector_events.py", line 1196, in sendto
bot-api-service-dev | self._sock.sendto(data, addr)
bot-api-service-dev | ^^^^^^^^^^^^^^^^^
bot-api-service-dev | AttributeError: 'NoneType' object has no attribute 'sendto'
bot-api-service-dev |
bot-api-service-dev | During handling of the above exception, another exception occurred:
bot-api-service-dev |
bot-api-service-dev | Traceback (most recent call last):
bot-api-service-dev | File "/usr/local/lib/python3.11/asyncio/events.py", line 80, in _run
bot-api-service-dev | self._context.run(self._callback, *self._args)
bot-api-service-dev | File "/usr/local/lib/python3.11/site-packages/aioice/stun.py", line 312, in __retry
bot-api-service-dev | self.__protocol.send_stun(self.__request, self.__addr)
bot-api-service-dev | File "/usr/local/lib/python3.11/site-packages/aioice/ice.py", line 266, in send_stun
bot-api-service-dev | self.transport.sendto(bytes(message), addr)
bot-api-service-dev | File "/usr/local/lib/python3.11/asyncio/selector_events.py", line 1206, in sendto
bot-api-service-dev | self._fatal_error(
bot-api-service-dev | File "/usr/local/lib/python3.11/asyncio/selector_events.py", line 873, in _fatal_error
bot-api-service-dev | self._loop.call_exception_handler({
bot-api-service-dev | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
bot-api-service-dev | AttributeError: 'NoneType' object has no attribute 'call_exception_handler'
When I try to speakc I get this nonetype error I guess the the input data is not being passed ?
I think it's something with the asyncio server not being launched correctly. Can you share the source code