hellork commited on
Commit
2863ba0
1 Parent(s): 3c79e3b

Update README.md

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