hellork commited on
Commit
d05e208
1 Parent(s): 23f3558

Update README.md

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