Update README.md
Browse files
README.md
CHANGED
@@ -142,6 +142,25 @@ llama-cli --hf-repo hellork/finance-chat-IQ4_NL-GGUF --hf-file finance-chat-iq4_
|
|
142 |
llama-server --hf-repo hellork/finance-chat-IQ4_NL-GGUF --hf-file finance-chat-iq4_nl-imat.gguf -c 2048
|
143 |
```
|
144 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
145 |
Note: You can also use this checkpoint directly through the [usage steps](https://github.com/ggerganov/llama.cpp?tab=readme-ov-file#usage) listed in the Llama.cpp repo as well.
|
146 |
|
147 |
Step 1: Clone llama.cpp from GitHub.
|
|
|
142 |
llama-server --hf-repo hellork/finance-chat-IQ4_NL-GGUF --hf-file finance-chat-iq4_nl-imat.gguf -c 2048
|
143 |
```
|
144 |
|
145 |
+
### The Ship's Computer:
|
146 |
+
|
147 |
+
Interact with this model by speaking to it. Lean, fast, & private, networked speech to text, AI images, multi-modal voice chat, control apps, webcam, and sound with less than 4GiB of VRAM.
|
148 |
+
[whisper_dictation](https://github.com/themanyone/whisper_dictation)
|
149 |
+
|
150 |
+
```bash
|
151 |
+
git clone -b main --single-branch https://github.com/themanyone/whisper_dictation.git
|
152 |
+
pip install -r whisper_dictation/requirements.txt
|
153 |
+
|
154 |
+
git clone https://github.com/ggerganov/whisper.cpp
|
155 |
+
cd whisper.cpp
|
156 |
+
GGML_CUDA=1 make -j # assuming CUDA is available. see docs
|
157 |
+
ln -s server ~/.local/bin/whisper_cpp_server # (just put it somewhere in $PATH)
|
158 |
+
|
159 |
+
whisper_cpp_server -l en -m models/ggml-tiny.en.bin --port 7777
|
160 |
+
./whisper_cpp_client.py
|
161 |
+
```
|
162 |
+
See [the docs](https://github.com/themanyone/whisper_dictation) for tips on enabling the computer to talk back, draw AI images, carry out voice commands, and other features.
|
163 |
+
|
164 |
Note: You can also use this checkpoint directly through the [usage steps](https://github.com/ggerganov/llama.cpp?tab=readme-ov-file#usage) listed in the Llama.cpp repo as well.
|
165 |
|
166 |
Step 1: Clone llama.cpp from GitHub.
|