├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── __init__.py ├── requirements.txt ├── utils ├── __init__.py └── rich_format_small.py ├── voice_chat └── app.py └── voice_translation └── app.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunAudioLLM/FunAudioLLM-APP/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunAudioLLM/FunAudioLLM-APP/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunAudioLLM/FunAudioLLM-APP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunAudioLLM/FunAudioLLM-APP/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | dashscope 2 | gradio 3 | -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/rich_format_small.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunAudioLLM/FunAudioLLM-APP/HEAD/utils/rich_format_small.py -------------------------------------------------------------------------------- /voice_chat/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunAudioLLM/FunAudioLLM-APP/HEAD/voice_chat/app.py -------------------------------------------------------------------------------- /voice_translation/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunAudioLLM/FunAudioLLM-APP/HEAD/voice_translation/app.py --------------------------------------------------------------------------------