hellork commited on
Commit
c424512
·
verified ·
1 Parent(s): 8f0e880

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -0
README.md CHANGED
@@ -35,6 +35,25 @@ llama-cli --hf-repo hellork/Configurable-Llama-3.1-8B-Instruct-IQ4_NL-GGUF --hf-
35
  llama-server --hf-repo hellork/Configurable-Llama-3.1-8B-Instruct-IQ4_NL-GGUF --hf-file configurable-llama-3.1-8b-instruct-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.
 
35
  llama-server --hf-repo hellork/Configurable-Llama-3.1-8B-Instruct-IQ4_NL-GGUF --hf-file configurable-llama-3.1-8b-instruct-iq4_nl-imat.gguf -c 2048
36
  ```
37
 
38
+ ### The Ship's Computer:
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
+ [whisper_dictation](https://github.com/themanyone/whisper_dictation)
42
+
43
+ ```bash
44
+ git clone -b main --single-branch https://github.com/themanyone/whisper_dictation.git
45
+ pip install -r whisper_dictation/requirements.txt
46
+
47
+ git clone https://github.com/ggerganov/whisper.cpp
48
+ cd whisper.cpp
49
+ GGML_CUDA=1 make -j # assuming CUDA is available. see docs
50
+ ln -s server ~/.local/bin/whisper_cpp_server # (just put it somewhere in $PATH)
51
+
52
+ whisper_cpp_server -l en -m models/ggml-tiny.en.bin --port 7777
53
+ ./whisper_cpp_client.py
54
+ ```
55
+ See [the docs](https://github.com/themanyone/whisper_dictation) for tips on enabling the computer to talk back, draw AI images, carry out voice commands, and other features.
56
+
57
  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.
58
 
59
  Step 1: Clone llama.cpp from GitHub.