Update README.md
Browse files
README.md
CHANGED
@@ -40,7 +40,28 @@ llama-cli --hf-repo hellork/SmolLM-1.7B-Instruct-Q5_K_M-GGUF --hf-file smollm-1.
|
|
40 |
llama-server --hf-repo hellork/SmolLM-1.7B-Instruct-Q5_K_M-GGUF --hf-file smollm-1.7b-instruct-q5_k_m-imat.gguf -c 2048
|
41 |
```
|
42 |
|
43 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
|
45 |
Step 1: Clone llama.cpp from GitHub.
|
46 |
```
|
|
|
40 |
llama-server --hf-repo hellork/SmolLM-1.7B-Instruct-Q5_K_M-GGUF --hf-file smollm-1.7b-instruct-q5_k_m-imat.gguf -c 2048
|
41 |
```
|
42 |
|
43 |
+
### The Ship's Computer:
|
44 |
+
|
45 |
+
[whisper_dictation](https://github.com/themanyone/whisper_dictation)
|
46 |
+
|
47 |
+
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.
|
48 |
+
|
49 |
+
```bash
|
50 |
+
git clone -b main --single-branch https://github.com/themanyone/whisper_dictation.git
|
51 |
+
pip install -r whisper_dictation/requirements.txt
|
52 |
+
|
53 |
+
git clone https://github.com/ggerganov/whisper.cpp
|
54 |
+
cd whisper.cpp
|
55 |
+
GGML_CUDA=1 make -j # assuming CUDA is available. see docs
|
56 |
+
ln -s server ~/.local/bin/whisper_cpp_server # (just put it somewhere in $PATH)
|
57 |
+
|
58 |
+
whisper_cpp_server -l en -m models/ggml-tiny.en.bin --port 7777
|
59 |
+
cd whisper_dictation
|
60 |
+
./whisper_cpp_client.py
|
61 |
+
```
|
62 |
+
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.
|
63 |
+
|
64 |
+
### Install Llama.cpp via git:
|
65 |
|
66 |
Step 1: Clone llama.cpp from GitHub.
|
67 |
```
|