├── .gitignore ├── LICENSE ├── README.md ├── attend_config-example.yaml ├── functions ├── __init__.py └── streamtts.py ├── live_tests.py ├── main.py ├── modes ├── discuss_activities.py ├── perform_activity-old.py └── perform_activity.py ├── requirements.txt ├── services ├── audio_device_manager.py ├── event_system.py ├── interaction │ ├── audio.py │ ├── manager.py │ ├── service.py │ └── tts.py └── manage_recording.py ├── tests.py └── tests ├── __init__.py ├── functions └── test_streamtts.py ├── services ├── interaction │ ├── test_audio.py │ ├── test_manager.py │ ├── test_service.py │ └── test_tts.py ├── test_audio_device_manager.py ├── test_event_system.py └── test_manage_recording.py └── usetest ├── __init__.py ├── livetest_manage_recording.py └── livetest_streamtts.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperfocAIs/Attend/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperfocAIs/Attend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperfocAIs/Attend/HEAD/README.md -------------------------------------------------------------------------------- /attend_config-example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperfocAIs/Attend/HEAD/attend_config-example.yaml -------------------------------------------------------------------------------- /functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /functions/streamtts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperfocAIs/Attend/HEAD/functions/streamtts.py -------------------------------------------------------------------------------- /live_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperfocAIs/Attend/HEAD/live_tests.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperfocAIs/Attend/HEAD/main.py -------------------------------------------------------------------------------- /modes/discuss_activities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperfocAIs/Attend/HEAD/modes/discuss_activities.py -------------------------------------------------------------------------------- /modes/perform_activity-old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperfocAIs/Attend/HEAD/modes/perform_activity-old.py -------------------------------------------------------------------------------- /modes/perform_activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperfocAIs/Attend/HEAD/modes/perform_activity.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperfocAIs/Attend/HEAD/requirements.txt -------------------------------------------------------------------------------- /services/audio_device_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperfocAIs/Attend/HEAD/services/audio_device_manager.py -------------------------------------------------------------------------------- /services/event_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperfocAIs/Attend/HEAD/services/event_system.py -------------------------------------------------------------------------------- /services/interaction/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperfocAIs/Attend/HEAD/services/interaction/audio.py -------------------------------------------------------------------------------- /services/interaction/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperfocAIs/Attend/HEAD/services/interaction/manager.py -------------------------------------------------------------------------------- /services/interaction/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperfocAIs/Attend/HEAD/services/interaction/service.py -------------------------------------------------------------------------------- /services/interaction/tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperfocAIs/Attend/HEAD/services/interaction/tts.py -------------------------------------------------------------------------------- /services/manage_recording.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperfocAIs/Attend/HEAD/services/manage_recording.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperfocAIs/Attend/HEAD/tests.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Initialize tests package 2 | -------------------------------------------------------------------------------- /tests/functions/test_streamtts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperfocAIs/Attend/HEAD/tests/functions/test_streamtts.py -------------------------------------------------------------------------------- /tests/services/interaction/test_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperfocAIs/Attend/HEAD/tests/services/interaction/test_audio.py -------------------------------------------------------------------------------- /tests/services/interaction/test_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperfocAIs/Attend/HEAD/tests/services/interaction/test_manager.py -------------------------------------------------------------------------------- /tests/services/interaction/test_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperfocAIs/Attend/HEAD/tests/services/interaction/test_service.py -------------------------------------------------------------------------------- /tests/services/interaction/test_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperfocAIs/Attend/HEAD/tests/services/interaction/test_tts.py -------------------------------------------------------------------------------- /tests/services/test_audio_device_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperfocAIs/Attend/HEAD/tests/services/test_audio_device_manager.py -------------------------------------------------------------------------------- /tests/services/test_event_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperfocAIs/Attend/HEAD/tests/services/test_event_system.py -------------------------------------------------------------------------------- /tests/services/test_manage_recording.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperfocAIs/Attend/HEAD/tests/services/test_manage_recording.py -------------------------------------------------------------------------------- /tests/usetest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperfocAIs/Attend/HEAD/tests/usetest/__init__.py -------------------------------------------------------------------------------- /tests/usetest/livetest_manage_recording.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperfocAIs/Attend/HEAD/tests/usetest/livetest_manage_recording.py -------------------------------------------------------------------------------- /tests/usetest/livetest_streamtts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperfocAIs/Attend/HEAD/tests/usetest/livetest_streamtts.py --------------------------------------------------------------------------------