Update README.md
Browse files
README.md
CHANGED
@@ -34,7 +34,28 @@ llama-cli --hf-repo hellork/chatglm3-6b-128k-Q8_0-GGUF --hf-file chatglm3-6b-128
|
|
34 |
llama-server --hf-repo hellork/chatglm3-6b-128k-Q8_0-GGUF --hf-file chatglm3-6b-128k-q8_0.gguf -c 2048
|
35 |
```
|
36 |
|
37 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
|
39 |
Step 1: Clone llama.cpp from GitHub.
|
40 |
```
|
|
|
34 |
llama-server --hf-repo hellork/chatglm3-6b-128k-Q8_0-GGUF --hf-file chatglm3-6b-128k-q8_0.gguf -c 2048
|
35 |
```
|
36 |
|
37 |
+
### The Ship's Computer:
|
38 |
+
|
39 |
+
[whisper_dictation](https://github.com/themanyone/whisper_dictation)
|
40 |
+
|
41 |
+
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.
|
42 |
+
|
43 |
+
```bash
|
44 |
+
git clone -b main --single-branch https://github.com/themanyone/whisper_dictation.git
|
45 |
+
pip install -r whisper_dictation/requirements.txt
|
46 |
+
|
47 |
+
git clone https://github.com/ggerganov/whisper.cpp
|
48 |
+
cd whisper.cpp
|
49 |
+
GGML_CUDA=1 make -j # assuming CUDA is available. see docs
|
50 |
+
ln -s server ~/.local/bin/whisper_cpp_server # (just put it somewhere in $PATH)
|
51 |
+
|
52 |
+
whisper_cpp_server -l en -m models/ggml-tiny.en.bin --port 7777
|
53 |
+
cd whisper_dictation
|
54 |
+
./whisper_cpp_client.py
|
55 |
+
```
|
56 |
+
See [the docs](https://github.com/themanyone/whisper_dictation) for tips on integrating with llama.cpp server, enabling the computer to talk back, draw AI images, carry out voice commands, and other features.
|
57 |
+
|
58 |
+
### Install Llama.cpp via git:
|
59 |
|
60 |
Step 1: Clone llama.cpp from GitHub.
|
61 |
```
|