├── .gitignore ├── BUILD.md ├── LICENSE ├── README.md ├── pyproject.toml ├── requirements.txt ├── src └── talkgpt4all │ ├── __init__.py │ └── chat.py └── tests └── example_test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vra/talkGPT4All/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vra/talkGPT4All/HEAD/BUILD.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vra/talkGPT4All/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vra/talkGPT4All/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vra/talkGPT4All/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | gpt4all 2 | openai-whisper 3 | playsound 4 | SpeechRecognition 5 | TTS 6 | -------------------------------------------------------------------------------- /src/talkgpt4all/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vra/talkGPT4All/HEAD/src/talkgpt4all/__init__.py -------------------------------------------------------------------------------- /src/talkgpt4all/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vra/talkGPT4All/HEAD/src/talkgpt4all/chat.py -------------------------------------------------------------------------------- /tests/example_test.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------