15 lines
635 B
Python
15 lines
635 B
Python
"""
|
|
This program has been developed by students from the bachelor Computer Science at Utrecht
|
|
University within the Software Project course.
|
|
© Copyright Utrecht University (Department of Information and Computing Sciences)
|
|
--------------------------------------------------------------------------------
|
|
Agents responsible for processing sensory input, such as audio transcription and voice activity
|
|
detection.
|
|
"""
|
|
|
|
from .face_rec_agent import FacePerceptionAgent as FacePerceptionAgent
|
|
from .transcription_agent.transcription_agent import (
|
|
TranscriptionAgent as TranscriptionAgent,
|
|
)
|
|
from .vad_agent import VADAgent as VADAgent
|