hellork commited on
Commit
dc9ef8a
1 Parent(s): 24a2b29

Update README.md

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