10 lines
263 B
Python
10 lines
263 B
Python
"""
|
|
Agents responsible for processing sensory input, such as audio transcription and voice activity
|
|
detection.
|
|
"""
|
|
|
|
from .transcription_agent.transcription_agent import (
|
|
TranscriptionAgent as TranscriptionAgent,
|
|
)
|
|
from .vad_agent import VADAgent as VADAgent
|