hellork commited on
Commit
ddf8c44
·
verified ·
1 Parent(s): b0609e8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +21 -1
README.md CHANGED
@@ -143,7 +143,27 @@ llama-cli --hf-repo hellork/law-chat-IQ4_NL-GGUF --hf-file law-chat-iq4_nl-imat.
143
  llama-server --hf-repo hellork/law-chat-IQ4_NL-GGUF --hf-file law-chat-iq4_nl-imat.gguf -c 2048
144
  ```
145
 
146
- 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.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
147
 
148
  Step 1: Clone llama.cpp from GitHub.
149
  ```
 
143
  llama-server --hf-repo hellork/law-chat-IQ4_NL-GGUF --hf-file law-chat-iq4_nl-imat.gguf -c 2048
144
  ```
145
 
146
+ ### The Ship's Computer:
147
+
148
+ 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.
149
+ [whisper_dictation](https://github.com/themanyone/whisper_dictation)
150
+
151
+ ```bash
152
+ git clone -b main --single-branch https://github.com/themanyone/whisper_dictation.git
153
+ pip install -r whisper_dictation/requirements.txt
154
+
155
+ git clone https://github.com/ggerganov/whisper.cpp
156
+ cd whisper.cpp
157
+ GGML_CUDA=1 make -j # assuming CUDA is available. see docs
158
+ ln -s server ~/.local/bin/whisper_cpp_server # (just put it somewhere in $PATH)
159
+
160
+ whisper_cpp_server -l en -m models/ggml-tiny.en.bin --port 7777
161
+ cd whisper_dictation
162
+ ./whisper_cpp_client.py
163
+ ```
164
+ 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.
165
+
166
+ ### Install Llama.cpp via git:
167
 
168
  Step 1: Clone llama.cpp from GitHub.
169
  ```