Update README.md
Browse files
README.md
CHANGED
|
@@ -36,7 +36,7 @@ llama-server --hf-repo hellork/deepseek-coder-6.7b-instruct-IQ4_NL-GGUF --hf-fil
|
|
| 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 |
[whisper_dictation](https://github.com/themanyone/whisper_dictation)
|
| 38 |
|
| 39 |
-
Quick start
|
| 40 |
```bash
|
| 41 |
git clone -b main --single-branch https://github.com/themanyone/whisper_dictation.git
|
| 42 |
pip install -r whisper_dictation/requirements.txt
|
|
@@ -47,13 +47,17 @@ GGML_CUDA=1 make -j # assuming CUDA is available. see docs
|
|
| 47 |
ln -s server ~/.local/bin/whisper_cpp_server # (just put it somewhere in $PATH)
|
| 48 |
whisper_cpp_server -l en -m models/ggml-tiny.en.bin --port 7777
|
| 49 |
|
| 50 |
-
# -ngl option assumes CUDA is available. see docs
|
| 51 |
-
llama-server --hf-repo hellork/calme-2.1-qwen2-7b-IQ4_NL-GGUF --hf-file
|
| 52 |
|
| 53 |
cd whisper_dictation
|
| 54 |
./whisper_cpp_client.py
|
| 55 |
```
|
| 56 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 57 |
Step 2: Move into the llama.cpp folder and build it with `LLAMA_CURL=1` flag along with other hardware-specific flags (for ex: LLAMA_CUDA=1 for Nvidia GPUs on Linux).
|
| 58 |
```
|
| 59 |
cd llama.cpp && LLAMA_CURL=1 make
|
|
|
|
| 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 |
[whisper_dictation](https://github.com/themanyone/whisper_dictation)
|
| 38 |
|
| 39 |
+
*Quick start*
|
| 40 |
```bash
|
| 41 |
git clone -b main --single-branch https://github.com/themanyone/whisper_dictation.git
|
| 42 |
pip install -r whisper_dictation/requirements.txt
|
|
|
|
| 47 |
ln -s server ~/.local/bin/whisper_cpp_server # (just put it somewhere in $PATH)
|
| 48 |
whisper_cpp_server -l en -m models/ggml-tiny.en.bin --port 7777
|
| 49 |
|
| 50 |
+
# -ngl option assumes CUDA or othr AI acceleration is available. see docs
|
| 51 |
+
llama-server --hf-repo hellork/calme-2.1-qwen2-7b-IQ4_NL-GGUF --hf-file calme-2.1-qwen2-7b-iq4_nl-imat.gguf -c 2048 -ngl 17 --port 8888
|
| 52 |
|
| 53 |
cd whisper_dictation
|
| 54 |
./whisper_cpp_client.py
|
| 55 |
```
|
| 56 |
|
| 57 |
+
### Install llama.cpp via git:
|
| 58 |
+
|
| 59 |
+
Step 1: `git clone https://github.com/ggerganov/llama.cpp`
|
| 60 |
+
|
| 61 |
Step 2: Move into the llama.cpp folder and build it with `LLAMA_CURL=1` flag along with other hardware-specific flags (for ex: LLAMA_CUDA=1 for Nvidia GPUs on Linux).
|
| 62 |
```
|
| 63 |
cd llama.cpp && LLAMA_CURL=1 make
|