voconly commited on
Commit
5e1bb0f
Β·
verified Β·
1 Parent(s): 3b03fd6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +183 -1
README.md CHANGED
@@ -1,3 +1,185 @@
1
  ---
2
- license: apache-2.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+
3
+ tags:
4
+
5
+ - speech-to-text
6
+ - automatic-speech-recognition
7
+ - voice-input
8
+ - asr
9
+ - gguf
10
+ - whisper
11
+ - sensevoice
12
+ - parakeet
13
+ - qwen-asr
14
+
15
+ language:
16
+ - en
17
+ - zh
18
+
19
  ---
20
+
21
+ # Voconly
22
+
23
+ **Voconly is a local-first AI voice input assistant for Windows.**
24
+
25
+ Speak naturally and let AI turn your voice into text, then polish, translate, summarize, or structure it.
26
+
27
+ Voconly combines **local speech recognition (ASR)** with optional **LLM processing**, making voice a more natural way to write, communicate, capture ideas, and interact with your computer.
28
+
29
+ **Website:** https://www.voconly.com
30
+ **GitHub:** https://github.com/xinkyle/Voconly
31
+
32
+ ---
33
+
34
+ ## What is Voconly?
35
+
36
+ Voconly is an open-source **AI voice input and speech-to-text tool** designed for local, private, and flexible use.
37
+
38
+ Instead of typing everything with a keyboard:
39
+
40
+ **Press a hotkey β†’ Speak β†’ Transcribe β†’ AI Process β†’ Output**
41
+
42
+ You can use Voconly anywhere you normally type β€” editors, browsers, email clients, chat applications, terminals, IDEs, and more.
43
+
44
+ ### Key Features
45
+
46
+ * **Local Speech-to-Text** β€” Run ASR models locally on your computer
47
+ * **Real-time Transcription** β€” See your words as you speak
48
+ * **AI Text Processing** β€” Polish, translate, rewrite, summarize, and structure
49
+ * **Privacy First** β€” Process voice data locally without uploading recordings
50
+ * **Offline Support** β€” Local ASR can work without an internet connection
51
+ * **Global Hotkeys** β€” Trigger voice input from any application
52
+ * **Flexible Models** β€” Choose different speech recognition and LLM models for different scenarios
53
+
54
+ ---
55
+
56
+ ## Open-Source Models
57
+
58
+ This Hugging Face organization hosts **open-source models and resources used by Voconly**, with a focus on local speech recognition, voice AI, and efficient local inference.
59
+
60
+ ### Speech Recognition / ASR
61
+
62
+ * [Whisper Large V3 Turbo β€” GGUF](https://huggingface.co/voconly/whisper-large-v3-turbo-gguf) β€” Fast local speech-to-text
63
+ * [SenseVoice Small](https://huggingface.co/voconly/sensevoice-small) β€” Multilingual speech recognition
64
+ * [Qwen3-ASR 1.7B β€” GGUF](https://huggingface.co/voconly/Qwen3-ASR-1.7B-gguf) β€” Lightweight multilingual ASR
65
+ * [Parakeet TDT 0.6B β€” GGUF](https://huggingface.co/voconly/parakeet-tdt-0.6b-v3-gguf) β€” Efficient streaming speech recognition
66
+ * [Parakeet Unified EN 0.6B β€” GGUF](https://huggingface.co/voconly/parakeet-unified-en-0.6b-gguf) β€” English speech recognition
67
+ * [Nemotron 3.5 ASR 0.6B β€” GGUF](https://huggingface.co/voconly/nemotron-3.5-asr-streaming-0.6b-gguf) β€” Streaming ASR
68
+ * [Cohere Transcribe 2B β€” GGUF](https://huggingface.co/voconly/cohere-transcribe-03-2026-gguf) β€” Speech transcription
69
+
70
+ ### Local LLMs
71
+
72
+ * [Qwen3.5-9B Q4_K_M β€” GGUF](https://huggingface.co/voconly/Qwen3.5-9B-Q4_K_M-GGUF) β€” Efficient local LLM inference
73
+ * [Qwen3-4B-Instruct Q4_K_M β€” GGUF](https://huggingface.co/voconly/Qwen3-4B-Instruct-2507-Q4_K_M-GGUF) β€” Lightweight instruction model
74
+
75
+ **[Browse all Voconly models and resources](https://huggingface.co/voconly/models)**
76
+
77
+ ---
78
+
79
+ ## Why Local AI?
80
+
81
+ Voconly is built around a simple idea:
82
+
83
+ **Your voice should belong to you.**
84
+
85
+ Voice input can contain private conversations, work information, ideas, and personal thoughts.
86
+
87
+ That's why Voconly supports running speech recognition locally:
88
+
89
+ * Your audio can stay on your computer
90
+ * No cloud upload is required for local ASR
91
+ * No dependency on online transcription quotas
92
+ * Works offline when using local models
93
+ * You choose which models and AI services to use
94
+
95
+ ---
96
+
97
+ ## How Voconly Uses These Models
98
+
99
+ Voconly separates the voice input process into two stages:
100
+
101
+ **Speech β†’ ASR β†’ Text β†’ LLM β†’ Final Output**
102
+
103
+ ASR models handle speech recognition, while optional LLMs can transform the raw transcript into useful content.
104
+
105
+ For example:
106
+
107
+ > **Speak:**
108
+ > β€œHelp me organize this idea from earlier and get it ready to send to the client.β€œ
109
+
110
+ > **ASR:**
111
+ > Converts speech into text.
112
+
113
+ ↓
114
+
115
+ > **LLM:**
116
+ > Rewrites and structures the content.
117
+
118
+ ↓
119
+
120
+ > **Output:**
121
+ > A polished message ready to send.
122
+
123
+ This architecture allows users to choose different models depending on their hardware, language, accuracy, speed, and privacy requirements.
124
+
125
+ ---
126
+
127
+ ## Use Cases
128
+
129
+ Voconly can be used for:
130
+
131
+ * **Content Creation** β€” Capture ideas, write articles, create scripts
132
+ * **Work & Communication** β€” Emails, messages, reports, summaries
133
+ * **Meetings** β€” Transcription and structured meeting notes
134
+ * **Development** β€” Describe requirements, write Issues, explain technical ideas
135
+ * **Learning** β€” Capture notes and learning insights
136
+ * **Daily Journaling** β€” Record thoughts and ideas naturally
137
+
138
+ ---
139
+
140
+ ## Why Open Source?
141
+
142
+ AI is changing who can create software.
143
+
144
+ In the past, turning an idea into a product often required a team of designers, developers, and engineers.
145
+
146
+ Today, one person can use AI to build things that previously required an entire team.
147
+
148
+ Voconly is part of my exploration of this idea:
149
+
150
+ > **What can one person + AI create?**
151
+
152
+ I believe AI should not only make existing work faster.
153
+
154
+ It should give more people the ability to **turn their ideas into real products**.
155
+
156
+ Voconly is one small experiment in that direction.
157
+
158
+ ---
159
+
160
+ ## Learn More
161
+
162
+ **Voconly Website:**
163
+ https://www.voconly.com
164
+
165
+ **GitHub Repository:**
166
+ https://github.com/xinkyle/Voconly
167
+
168
+ **Hugging Face Organization:**
169
+ https://huggingface.co/voconly
170
+
171
+ If Voconly is useful to you, consider giving the project a ⭐ **Star on GitHub**.
172
+
173
+ ---
174
+
175
+ ## About
176
+
177
+ **εΉΈε‹‡οΌˆθ€εΉΈ.AIοΌ‰**
178
+
179
+ 15 years of entrepreneurship and long-term experience in AI, big data, and software products.
180
+
181
+ Since 2024, I have been exploring AI coding and building software products with AI.
182
+
183
+ Voconly is part of my ongoing exploration of **local AI, personal AI, and individual creativity in the AI era**.
184
+
185
+ **One person. One idea. AI.**