├── .gitignore ├── LICENSE ├── README.md ├── llm-chat ├── README.md ├── config.py ├── imgs │ └── llm-chat.png ├── llm.py ├── main.py ├── requirements.txt ├── stt.py └── tts.py └── llm-tutorial ├── README.md ├── activations └── activations.py └── normalizations └── layer_norm.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgi/nlp-journey/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgi/nlp-journey/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgi/nlp-journey/HEAD/README.md -------------------------------------------------------------------------------- /llm-chat/README.md: -------------------------------------------------------------------------------- 1 | 2 | # 🎙️ 语音聊天系统 Demo 3 | 4 | 5 | 支持语音和文本输入,使用Whisper + llama + edge tts 6 | 7 | 8 | -------------------------------------------------------------------------------- /llm-chat/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgi/nlp-journey/HEAD/llm-chat/config.py -------------------------------------------------------------------------------- /llm-chat/imgs/llm-chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgi/nlp-journey/HEAD/llm-chat/imgs/llm-chat.png -------------------------------------------------------------------------------- /llm-chat/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgi/nlp-journey/HEAD/llm-chat/llm.py -------------------------------------------------------------------------------- /llm-chat/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgi/nlp-journey/HEAD/llm-chat/main.py -------------------------------------------------------------------------------- /llm-chat/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgi/nlp-journey/HEAD/llm-chat/requirements.txt -------------------------------------------------------------------------------- /llm-chat/stt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgi/nlp-journey/HEAD/llm-chat/stt.py -------------------------------------------------------------------------------- /llm-chat/tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgi/nlp-journey/HEAD/llm-chat/tts.py -------------------------------------------------------------------------------- /llm-tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgi/nlp-journey/HEAD/llm-tutorial/README.md -------------------------------------------------------------------------------- /llm-tutorial/activations/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgi/nlp-journey/HEAD/llm-tutorial/activations/activations.py -------------------------------------------------------------------------------- /llm-tutorial/normalizations/layer_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgi/nlp-journey/HEAD/llm-tutorial/normalizations/layer_norm.py --------------------------------------------------------------------------------