hellork commited on
Commit
18591b2
1 Parent(s): 5bd510e

Update README.md

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