{"id":15175653,"url":"https://github.com/vra/talkgpt4all","last_synced_at":"2025-04-09T13:08:14.044Z","repository":{"id":149993882,"uuid":"622381744","full_name":"vra/talkGPT4All","owner":"vra","description":"A voice chatbot based on GPT4All and talkGPT, running on your local pc!","archived":false,"fork":false,"pushed_at":"2023-11-22T15:01:12.000Z","size":20,"stargazers_count":153,"open_issues_count":5,"forks_count":20,"subscribers_count":8,"default_branch":"main","last_synced_at":"2024-10-30T04:49:19.387Z","etag":null,"topics":["ai","chatbot","gpt4all","llama","llm","python","whisper-ai"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vra.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2023-04-01T23:54:00.000Z","updated_at":"2024-09-23T06:25:29.000Z","dependencies_parsed_at":null,"dependency_job_id":"97d555ac-ea7c-4fd9-bd9c-776470403208","html_url":"https://github.com/vra/talkGPT4All","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vra%2FtalkGPT4All","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vra%2FtalkGPT4All/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vra%2FtalkGPT4All/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vra%2FtalkGPT4All/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vra","download_url":"https://codeload.github.com/vra/talkGPT4All/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248045233,"owners_count":21038553,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","chatbot","gpt4all","llama","llm","python","whisper-ai"],"created_at":"2024-09-27T12:39:49.743Z","updated_at":"2025-04-09T13:08:14.025Z","avatar_url":"https://github.com/vra.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# talkGPT4All\nA voice chatbot based on GPT4All and talkGPT.\n\n[Video demo](https://www.zhihu.com/zvideo/1625779747656515584).\n\nPlease check more details in this [blog post (in Chinese)](https://zhuanlan.zhihu.com/p/632592897).\n\nIf you are looking for the older version of talkGPT4All, please checkout to [dev/v1.0.0](https://github.com/vra/talkGPT4All/tree/dev/v1.0.0) branch.\n\n## Installation\n\n### Install using pip (Recommend)\ntalkgpt4all is on PyPI, you can install it using simple one command:\n```bash\npip install talkgpt4all\n```\n### Install from source code\nClone the code:\n```bash\ngit clone https://github.com/vra/talkGPT4All.git \u003cROOT\u003e\n```\n\nInstall the dependencies and talkGPT4All in a python virtual environment:\n```bash\ncd \u003cROOT\u003e\npython -m venv talkgpt4all\nsource talkgpt4all/bin/activate\npip install -U pip\npip install -r requirements.txt\n```\n\n## Extra dependencies for Linux users\nWe use [pyttsx3](https://github.com/nateshmbhat/pyttsx3) to convert text to voice. Please note that on Linux ，You need to install dependencies:\n```bash\nsudo apt update \u0026\u0026 sudo apt install -y espeak ffmpeg libespeak1\n```\n\n## Usage\nOpen a terminal and type `talkgpt4all` to begin:\n```bash\ntalkgpt4all\n```\n\n### Use different LLMs\nYou can choose different LLMs  using `--gpt-model-type \u003ctype\u003e`, all available choices:\n```python\n{\n\"ggml-gpt4all-j-v1.3-groovy\"\n\"ggml-gpt4all-j-v1.2-jazzy\"\n\"ggml-gpt4all-j-v1.1-breezy\"\n\"ggml-gpt4all-j\"\n\"ggml-gpt4all-l13b-snoozy\"\n\"ggml-vicuna-7b-1.1-q4_2\"\n\"ggml-vicuna-13b-1.1-q4_2\"\n\"ggml-wizardLM-7B.q4_2\"\n}\n```\n\n### Use different Whisper models\nYou can choose whisper model type using `--whisper-model-type \u003ctype\u003e`, all available choices:\n```python\n{\n\"tiny.en\"\n\"tiny\"\n\"base.en\"\n\"base\"\n\"small.en\"\n\"small\"\n\"medium.en\"\n\"medium\"\n\"large-v1\"\n\"large-v2\"\n\"large\"\n}\n```\n\n### Tune voice rate\nYou can tune the voice rate using `--voice-rate \u003crate\u003e`, default rate is 165. the larger the speak faster.\n\ne.g.,\n```bash\ntalkgpt4all --whisper-model-type large --voice-rate 150\n```\n\n## RoadMap\n+ [x] Add source building for llama.cpp, with more flexible interface.\n+ [x] More LLMs\n+ [x] Add support for contextual information during chating.\n+ [ ] Test code on Linux，Mac Intel and WSL2.\n+ [ ] Add support for Chinese input and output.\n+ [ ] Add Documents and Changelog\n\ncontributions are welcomed!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvra%2Ftalkgpt4all","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvra%2Ftalkgpt4all","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvra%2Ftalkgpt4all/lists"}