Update README.md
Browse files
README.md
CHANGED
@@ -30,7 +30,28 @@ llama-cli --hf-repo hellork/internlm2_5-7b-chat-Q4_K_M-GGUF --hf-file internlm2_
|
|
30 |
llama-server --hf-repo hellork/internlm2_5-7b-chat-Q4_K_M-GGUF --hf-file internlm2_5-7b-chat-q4_k_m.gguf -c 2048
|
31 |
```
|
32 |
|
33 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
|
35 |
Step 1: Clone llama.cpp from GitHub.
|
36 |
```
|
|
|
30 |
llama-server --hf-repo hellork/internlm2_5-7b-chat-Q4_K_M-GGUF --hf-file internlm2_5-7b-chat-q4_k_m.gguf -c 2048
|
31 |
```
|
32 |
|
33 |
+
### The Ship's Computer:
|
34 |
+
|
35 |
+
[whisper_dictation](https://github.com/themanyone/whisper_dictation)
|
36 |
+
|
37 |
+
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.
|
38 |
+
|
39 |
+
```bash
|
40 |
+
git clone -b main --single-branch https://github.com/themanyone/whisper_dictation.git
|
41 |
+
pip install -r whisper_dictation/requirements.txt
|
42 |
+
|
43 |
+
git clone https://github.com/ggerganov/whisper.cpp
|
44 |
+
cd whisper.cpp
|
45 |
+
GGML_CUDA=1 make -j # assuming CUDA is available. see docs
|
46 |
+
ln -s server ~/.local/bin/whisper_cpp_server # (just put it somewhere in $PATH)
|
47 |
+
|
48 |
+
whisper_cpp_server -l en -m models/ggml-tiny.en.bin --port 7777
|
49 |
+
cd whisper_dictation
|
50 |
+
./whisper_cpp_client.py
|
51 |
+
```
|
52 |
+
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.
|
53 |
+
|
54 |
+
### Install Llama.cpp via git:
|
55 |
|
56 |
Step 1: Clone llama.cpp from GitHub.
|
57 |
```
|