├── LICENCE ├── README.md ├── config.py ├── generated ├── 30c1e660-973e-4551-9af8-f18b4c850ef3 │ ├── audio.wav │ └── shapes.csv └── 6d49e0e6-d8ef-4fb2-afcf-aca72450ac9d │ ├── audio.wav │ └── shapes.csv ├── livelink ├── animations │ ├── Angry │ │ ├── MySlate_164_iPhone_cal.csv │ │ ├── MySlate_165_iPhone_cal.csv │ │ └── MySlate_166_iPhone_cal.csv │ ├── Disgusted │ │ ├── MySlate_164_iPhone_cal.csv │ │ ├── MySlate_165_iPhone_cal.csv │ │ └── MySlate_166_iPhone_cal.csv │ ├── Fearful │ │ ├── MySlate_161_iPhone_cal.csv │ │ ├── MySlate_162_iPhone_cal.csv │ │ └── MySlate_163_iPhone_cal.csv │ ├── Happy │ │ └── Happy.csv │ ├── Neutral │ │ └── Neutral.csv │ ├── Sad │ │ ├── MySlate_167_iPhone_cal.csv │ │ ├── MySlate_168_iPhone_cal.csv │ │ └── MySlate_169_iPhone_cal.csv │ ├── Surprised │ │ └── Happy.csv │ ├── animation_emotion.py │ ├── animation_loader.py │ ├── blending_anims.py │ ├── default_anim │ │ └── default.csv │ └── default_animation.py ├── connect │ ├── dimension_scalars.py │ ├── faceblendshapes.py │ ├── livelink_init.py │ └── pylivelinkface.py └── send_to_unreal.py ├── llm_to_face.py ├── play_generated_files.py ├── ptt_to_s2s_to_face.py ├── push_to_talk_to_face.py ├── regen_generated.py ├── requirements.txt ├── text_to_face.py ├── utils ├── audio │ ├── convert_audio.py │ ├── play_audio.py │ ├── record_audio.py │ └── save_audio.py ├── audio_face_workers.py ├── csv │ └── save_csv.py ├── emote_sender │ └── send_emote.py ├── files │ └── file_utils.py ├── generated_runners.py ├── llm │ ├── chat_utils.py │ ├── llm_initialiser.py │ ├── llm_utils.py │ ├── local_api │ │ ├── llama3_1 │ │ │ ├── ckpt │ │ │ │ └── readme.txt │ │ │ ├── llama │ │ │ │ ├── __init__.py │ │ │ │ ├── generation.py │ │ │ │ ├── model.py │ │ │ │ └── tokenizer.py │ │ │ ├── llama3_8b_api.py │ │ │ ├── params.json │ │ │ └── tokenizer.model │ │ ├── llama3_2 │ │ │ ├── ckpts │ │ │ │ ├── 1b_instruct │ │ │ │ │ ├── params.json │ │ │ │ │ └── readme.txt │ │ │ │ └── 3b_instruct │ │ │ │ │ ├── params.json │ │ │ │ │ └── readme.txt │ │ │ ├── llama │ │ │ │ ├── __init__.py │ │ │ │ ├── generation.py │ │ │ │ ├── model.py │ │ │ │ └── tokenizer.py │ │ │ ├── llama_3_2_api.py │ │ │ └── tokenizer.model │ │ └── readme.txt │ ├── sentence_builder.py │ └── turn_processing.py ├── neurosync │ ├── multi_part_return.py │ └── neurosync_api_connect.py ├── stt │ └── transcribe_whisper.py ├── tts │ ├── eleven_labs.py │ ├── getVoicesElevenLabs.py │ ├── kokoro │ │ └── kokoro_api.py │ ├── local_tts.py │ └── tts_bridge.py └── vector_db │ ├── get_embedding.py │ ├── vector_db.py │ └── vector_db_utils.py ├── wav_input └── audio.wav └── wave_to_face.py /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/config.py -------------------------------------------------------------------------------- /generated/30c1e660-973e-4551-9af8-f18b4c850ef3/audio.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/generated/30c1e660-973e-4551-9af8-f18b4c850ef3/audio.wav -------------------------------------------------------------------------------- /generated/30c1e660-973e-4551-9af8-f18b4c850ef3/shapes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/generated/30c1e660-973e-4551-9af8-f18b4c850ef3/shapes.csv -------------------------------------------------------------------------------- /generated/6d49e0e6-d8ef-4fb2-afcf-aca72450ac9d/audio.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/generated/6d49e0e6-d8ef-4fb2-afcf-aca72450ac9d/audio.wav -------------------------------------------------------------------------------- /generated/6d49e0e6-d8ef-4fb2-afcf-aca72450ac9d/shapes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/generated/6d49e0e6-d8ef-4fb2-afcf-aca72450ac9d/shapes.csv -------------------------------------------------------------------------------- /livelink/animations/Angry/MySlate_164_iPhone_cal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/livelink/animations/Angry/MySlate_164_iPhone_cal.csv -------------------------------------------------------------------------------- /livelink/animations/Angry/MySlate_165_iPhone_cal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/livelink/animations/Angry/MySlate_165_iPhone_cal.csv -------------------------------------------------------------------------------- /livelink/animations/Angry/MySlate_166_iPhone_cal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/livelink/animations/Angry/MySlate_166_iPhone_cal.csv -------------------------------------------------------------------------------- /livelink/animations/Disgusted/MySlate_164_iPhone_cal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/livelink/animations/Disgusted/MySlate_164_iPhone_cal.csv -------------------------------------------------------------------------------- /livelink/animations/Disgusted/MySlate_165_iPhone_cal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/livelink/animations/Disgusted/MySlate_165_iPhone_cal.csv -------------------------------------------------------------------------------- /livelink/animations/Disgusted/MySlate_166_iPhone_cal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/livelink/animations/Disgusted/MySlate_166_iPhone_cal.csv -------------------------------------------------------------------------------- /livelink/animations/Fearful/MySlate_161_iPhone_cal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/livelink/animations/Fearful/MySlate_161_iPhone_cal.csv -------------------------------------------------------------------------------- /livelink/animations/Fearful/MySlate_162_iPhone_cal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/livelink/animations/Fearful/MySlate_162_iPhone_cal.csv -------------------------------------------------------------------------------- /livelink/animations/Fearful/MySlate_163_iPhone_cal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/livelink/animations/Fearful/MySlate_163_iPhone_cal.csv -------------------------------------------------------------------------------- /livelink/animations/Happy/Happy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/livelink/animations/Happy/Happy.csv -------------------------------------------------------------------------------- /livelink/animations/Neutral/Neutral.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/livelink/animations/Neutral/Neutral.csv -------------------------------------------------------------------------------- /livelink/animations/Sad/MySlate_167_iPhone_cal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/livelink/animations/Sad/MySlate_167_iPhone_cal.csv -------------------------------------------------------------------------------- /livelink/animations/Sad/MySlate_168_iPhone_cal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/livelink/animations/Sad/MySlate_168_iPhone_cal.csv -------------------------------------------------------------------------------- /livelink/animations/Sad/MySlate_169_iPhone_cal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/livelink/animations/Sad/MySlate_169_iPhone_cal.csv -------------------------------------------------------------------------------- /livelink/animations/Surprised/Happy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/livelink/animations/Surprised/Happy.csv -------------------------------------------------------------------------------- /livelink/animations/animation_emotion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/livelink/animations/animation_emotion.py -------------------------------------------------------------------------------- /livelink/animations/animation_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/livelink/animations/animation_loader.py -------------------------------------------------------------------------------- /livelink/animations/blending_anims.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/livelink/animations/blending_anims.py -------------------------------------------------------------------------------- /livelink/animations/default_anim/default.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/livelink/animations/default_anim/default.csv -------------------------------------------------------------------------------- /livelink/animations/default_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/livelink/animations/default_animation.py -------------------------------------------------------------------------------- /livelink/connect/dimension_scalars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/livelink/connect/dimension_scalars.py -------------------------------------------------------------------------------- /livelink/connect/faceblendshapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/livelink/connect/faceblendshapes.py -------------------------------------------------------------------------------- /livelink/connect/livelink_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/livelink/connect/livelink_init.py -------------------------------------------------------------------------------- /livelink/connect/pylivelinkface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/livelink/connect/pylivelinkface.py -------------------------------------------------------------------------------- /livelink/send_to_unreal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/livelink/send_to_unreal.py -------------------------------------------------------------------------------- /llm_to_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/llm_to_face.py -------------------------------------------------------------------------------- /play_generated_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/play_generated_files.py -------------------------------------------------------------------------------- /ptt_to_s2s_to_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/ptt_to_s2s_to_face.py -------------------------------------------------------------------------------- /push_to_talk_to_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/push_to_talk_to_face.py -------------------------------------------------------------------------------- /regen_generated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/regen_generated.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/requirements.txt -------------------------------------------------------------------------------- /text_to_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/text_to_face.py -------------------------------------------------------------------------------- /utils/audio/convert_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/audio/convert_audio.py -------------------------------------------------------------------------------- /utils/audio/play_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/audio/play_audio.py -------------------------------------------------------------------------------- /utils/audio/record_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/audio/record_audio.py -------------------------------------------------------------------------------- /utils/audio/save_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/audio/save_audio.py -------------------------------------------------------------------------------- /utils/audio_face_workers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/audio_face_workers.py -------------------------------------------------------------------------------- /utils/csv/save_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/csv/save_csv.py -------------------------------------------------------------------------------- /utils/emote_sender/send_emote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/emote_sender/send_emote.py -------------------------------------------------------------------------------- /utils/files/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/files/file_utils.py -------------------------------------------------------------------------------- /utils/generated_runners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/generated_runners.py -------------------------------------------------------------------------------- /utils/llm/chat_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/llm/chat_utils.py -------------------------------------------------------------------------------- /utils/llm/llm_initialiser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/llm/llm_initialiser.py -------------------------------------------------------------------------------- /utils/llm/llm_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/llm/llm_utils.py -------------------------------------------------------------------------------- /utils/llm/local_api/llama3_1/ckpt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/llm/local_api/llama3_1/ckpt/readme.txt -------------------------------------------------------------------------------- /utils/llm/local_api/llama3_1/llama/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/llm/local_api/llama3_1/llama/__init__.py -------------------------------------------------------------------------------- /utils/llm/local_api/llama3_1/llama/generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/llm/local_api/llama3_1/llama/generation.py -------------------------------------------------------------------------------- /utils/llm/local_api/llama3_1/llama/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/llm/local_api/llama3_1/llama/model.py -------------------------------------------------------------------------------- /utils/llm/local_api/llama3_1/llama/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/llm/local_api/llama3_1/llama/tokenizer.py -------------------------------------------------------------------------------- /utils/llm/local_api/llama3_1/llama3_8b_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/llm/local_api/llama3_1/llama3_8b_api.py -------------------------------------------------------------------------------- /utils/llm/local_api/llama3_1/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/llm/local_api/llama3_1/params.json -------------------------------------------------------------------------------- /utils/llm/local_api/llama3_1/tokenizer.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/llm/local_api/llama3_1/tokenizer.model -------------------------------------------------------------------------------- /utils/llm/local_api/llama3_2/ckpts/1b_instruct/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/llm/local_api/llama3_2/ckpts/1b_instruct/params.json -------------------------------------------------------------------------------- /utils/llm/local_api/llama3_2/ckpts/1b_instruct/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/llm/local_api/llama3_2/ckpts/1b_instruct/readme.txt -------------------------------------------------------------------------------- /utils/llm/local_api/llama3_2/ckpts/3b_instruct/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/llm/local_api/llama3_2/ckpts/3b_instruct/params.json -------------------------------------------------------------------------------- /utils/llm/local_api/llama3_2/ckpts/3b_instruct/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/llm/local_api/llama3_2/ckpts/3b_instruct/readme.txt -------------------------------------------------------------------------------- /utils/llm/local_api/llama3_2/llama/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/llm/local_api/llama3_2/llama/__init__.py -------------------------------------------------------------------------------- /utils/llm/local_api/llama3_2/llama/generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/llm/local_api/llama3_2/llama/generation.py -------------------------------------------------------------------------------- /utils/llm/local_api/llama3_2/llama/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/llm/local_api/llama3_2/llama/model.py -------------------------------------------------------------------------------- /utils/llm/local_api/llama3_2/llama/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/llm/local_api/llama3_2/llama/tokenizer.py -------------------------------------------------------------------------------- /utils/llm/local_api/llama3_2/llama_3_2_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/llm/local_api/llama3_2/llama_3_2_api.py -------------------------------------------------------------------------------- /utils/llm/local_api/llama3_2/tokenizer.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/llm/local_api/llama3_2/tokenizer.model -------------------------------------------------------------------------------- /utils/llm/local_api/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/llm/local_api/readme.txt -------------------------------------------------------------------------------- /utils/llm/sentence_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/llm/sentence_builder.py -------------------------------------------------------------------------------- /utils/llm/turn_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/llm/turn_processing.py -------------------------------------------------------------------------------- /utils/neurosync/multi_part_return.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/neurosync/multi_part_return.py -------------------------------------------------------------------------------- /utils/neurosync/neurosync_api_connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/neurosync/neurosync_api_connect.py -------------------------------------------------------------------------------- /utils/stt/transcribe_whisper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/stt/transcribe_whisper.py -------------------------------------------------------------------------------- /utils/tts/eleven_labs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/tts/eleven_labs.py -------------------------------------------------------------------------------- /utils/tts/getVoicesElevenLabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/tts/getVoicesElevenLabs.py -------------------------------------------------------------------------------- /utils/tts/kokoro/kokoro_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/tts/kokoro/kokoro_api.py -------------------------------------------------------------------------------- /utils/tts/local_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/tts/local_tts.py -------------------------------------------------------------------------------- /utils/tts/tts_bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/tts/tts_bridge.py -------------------------------------------------------------------------------- /utils/vector_db/get_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/vector_db/get_embedding.py -------------------------------------------------------------------------------- /utils/vector_db/vector_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/vector_db/vector_db.py -------------------------------------------------------------------------------- /utils/vector_db/vector_db_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/utils/vector_db/vector_db_utils.py -------------------------------------------------------------------------------- /wav_input/audio.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/wav_input/audio.wav -------------------------------------------------------------------------------- /wave_to_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimaVR/NeuroSync_Player/HEAD/wave_to_face.py --------------------------------------------------------------------------------