Instructions to use gabriellarson/reka-flash-3.1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use gabriellarson/reka-flash-3.1-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="gabriellarson/reka-flash-3.1-GGUF", filename="reka-flash-3.1-IQ1_M.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use gabriellarson/reka-flash-3.1-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf gabriellarson/reka-flash-3.1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf gabriellarson/reka-flash-3.1-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf gabriellarson/reka-flash-3.1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf gabriellarson/reka-flash-3.1-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf gabriellarson/reka-flash-3.1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf gabriellarson/reka-flash-3.1-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf gabriellarson/reka-flash-3.1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf gabriellarson/reka-flash-3.1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/gabriellarson/reka-flash-3.1-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use gabriellarson/reka-flash-3.1-GGUF with Ollama:
ollama run hf.co/gabriellarson/reka-flash-3.1-GGUF:Q4_K_M
- Unsloth Studio
How to use gabriellarson/reka-flash-3.1-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for gabriellarson/reka-flash-3.1-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for gabriellarson/reka-flash-3.1-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for gabriellarson/reka-flash-3.1-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use gabriellarson/reka-flash-3.1-GGUF with Docker Model Runner:
docker model run hf.co/gabriellarson/reka-flash-3.1-GGUF:Q4_K_M
- Lemonade
How to use gabriellarson/reka-flash-3.1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull gabriellarson/reka-flash-3.1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.reka-flash-3.1-GGUF-Q4_K_M
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +7 -0
- reka-flash-3.1-IQ4_XS.gguf +3 -0
- reka-flash-3.1-Q4_K_M.gguf +3 -0
- reka-flash-3.1-Q4_K_S.gguf +3 -0
- reka-flash-3.1-Q5_K_M.gguf +3 -0
- reka-flash-3.1-Q5_K_S.gguf +3 -0
- reka-flash-3.1-Q6_K.gguf +3 -0
- reka-flash-3.1-Q8_0.gguf +3 -0
.gitattributes
CHANGED
|
@@ -51,3 +51,10 @@ reka-flash-3.1-IQ4_NL.gguf filter=lfs diff=lfs merge=lfs -text
|
|
| 51 |
reka-flash-3.1-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
reka-flash-3.1-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
reka-flash-3.1-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 51 |
reka-flash-3.1-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
reka-flash-3.1-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
reka-flash-3.1-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
reka-flash-3.1-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
reka-flash-3.1-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
reka-flash-3.1-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
reka-flash-3.1-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
reka-flash-3.1-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
reka-flash-3.1-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
reka-flash-3.1-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
reka-flash-3.1-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e5e8adbc7d1a7b72fb565fc77d2e423f6a7f58cd4399e59b4d120f80f0723a53
|
| 3 |
+
size 11488151328
|
reka-flash-3.1-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3664b3384f300e4048ac92ee1fca179e5ac690110b18ce5aa583a56764217a9b
|
| 3 |
+
size 13610362656
|
reka-flash-3.1-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:615faa9ec7599b0e486ba1d243f6195d93136da8eaab93d97f171495126d8254
|
| 3 |
+
size 12627765024
|
reka-flash-3.1-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6f2e3040c989df7ad3b6244c3db4aa24225b43697a04aeae86229a433389d097
|
| 3 |
+
size 15635474208
|
reka-flash-3.1-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c10f7d8abbf14d60131dfa4c0ab22f6603bd43ed91ff79c3b5b429333d9979e7
|
| 3 |
+
size 14791755552
|
reka-flash-3.1-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e274a12fb095a8f69a25183845f63db8ca807f6a8713433618f48224cfb493f1
|
| 3 |
+
size 18440726304
|
reka-flash-3.1-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cf60832c4dbc60c9457ce75eeb5f5bf8100a6c7aa17085fce95163468f0c34d4
|
| 3 |
+
size 22217246496
|