hellork commited on
Commit
f0c2bc0
1 Parent(s): 25182cf

Update README.md

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