├── .gitignore ├── LICENSE ├── README.md ├── README_zh-CN.md ├── config.json ├── gptspeaker.py ├── heygpt.table ├── image ├── IMG_2668.jpg └── embed.png ├── kws.table ├── requirements.txt └── tests ├── llm_test.py └── tts_test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackwuwei/gptspeaker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackwuwei/gptspeaker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackwuwei/gptspeaker/HEAD/README.md -------------------------------------------------------------------------------- /README_zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackwuwei/gptspeaker/HEAD/README_zh-CN.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackwuwei/gptspeaker/HEAD/config.json -------------------------------------------------------------------------------- /gptspeaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackwuwei/gptspeaker/HEAD/gptspeaker.py -------------------------------------------------------------------------------- /heygpt.table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackwuwei/gptspeaker/HEAD/heygpt.table -------------------------------------------------------------------------------- /image/IMG_2668.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackwuwei/gptspeaker/HEAD/image/IMG_2668.jpg -------------------------------------------------------------------------------- /image/embed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackwuwei/gptspeaker/HEAD/image/embed.png -------------------------------------------------------------------------------- /kws.table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackwuwei/gptspeaker/HEAD/kws.table -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | azure-cognitiveservices-speech 2 | openai 3 | Requests 4 | tiktoken -------------------------------------------------------------------------------- /tests/llm_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackwuwei/gptspeaker/HEAD/tests/llm_test.py -------------------------------------------------------------------------------- /tests/tts_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackwuwei/gptspeaker/HEAD/tests/tts_test.py --------------------------------------------------------------------------------