hellork commited on
Commit
f5ed9bc
1 Parent(s): 2689d09

Update README.md

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