Text Generation
GGUF
PyTorch
English
Korean
saltlux
luxia
meta
llama-3
TensorBlock
GGUF
conversational
Instructions to use tensorblock/Ko-Llama3-Luxia-8B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use tensorblock/Ko-Llama3-Luxia-8B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="tensorblock/Ko-Llama3-Luxia-8B-GGUF", filename="Ko-Llama3-Luxia-8B-Q2_K.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use tensorblock/Ko-Llama3-Luxia-8B-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 tensorblock/Ko-Llama3-Luxia-8B-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/Ko-Llama3-Luxia-8B-GGUF:Q2_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf tensorblock/Ko-Llama3-Luxia-8B-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/Ko-Llama3-Luxia-8B-GGUF:Q2_K
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 tensorblock/Ko-Llama3-Luxia-8B-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/Ko-Llama3-Luxia-8B-GGUF:Q2_K
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 tensorblock/Ko-Llama3-Luxia-8B-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/Ko-Llama3-Luxia-8B-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/Ko-Llama3-Luxia-8B-GGUF:Q2_K
- LM Studio
- Jan
- vLLM
How to use tensorblock/Ko-Llama3-Luxia-8B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tensorblock/Ko-Llama3-Luxia-8B-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tensorblock/Ko-Llama3-Luxia-8B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/tensorblock/Ko-Llama3-Luxia-8B-GGUF:Q2_K
- Ollama
How to use tensorblock/Ko-Llama3-Luxia-8B-GGUF with Ollama:
ollama run hf.co/tensorblock/Ko-Llama3-Luxia-8B-GGUF:Q2_K
- Unsloth Studio
How to use tensorblock/Ko-Llama3-Luxia-8B-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 tensorblock/Ko-Llama3-Luxia-8B-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 tensorblock/Ko-Llama3-Luxia-8B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for tensorblock/Ko-Llama3-Luxia-8B-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use tensorblock/Ko-Llama3-Luxia-8B-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/Ko-Llama3-Luxia-8B-GGUF:Q2_K
- Lemonade
How to use tensorblock/Ko-Llama3-Luxia-8B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/Ko-Llama3-Luxia-8B-GGUF:Q2_K
Run and chat with the model
lemonade run user.Ko-Llama3-Luxia-8B-GGUF-Q2_K
List all available models
lemonade list
Remove .gguf files (keep Q2_K.gguf)
Browse files- Ko-Llama3-Luxia-8B-Q3_K_L.gguf +0 -3
- Ko-Llama3-Luxia-8B-Q3_K_M.gguf +0 -3
- Ko-Llama3-Luxia-8B-Q3_K_S.gguf +0 -3
- Ko-Llama3-Luxia-8B-Q4_0.gguf +0 -3
- Ko-Llama3-Luxia-8B-Q4_K_M.gguf +0 -3
- Ko-Llama3-Luxia-8B-Q4_K_S.gguf +0 -3
- Ko-Llama3-Luxia-8B-Q5_0.gguf +0 -3
- Ko-Llama3-Luxia-8B-Q5_K_M.gguf +0 -3
- Ko-Llama3-Luxia-8B-Q5_K_S.gguf +0 -3
- Ko-Llama3-Luxia-8B-Q6_K.gguf +0 -3
- Ko-Llama3-Luxia-8B-Q8_0.gguf +0 -3
Ko-Llama3-Luxia-8B-Q3_K_L.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:001ad9f7b1431d0ea973f3c0db4c9cd5a8b824a2a8e9bf255aed46335bb5d4d1
|
| 3 |
-
size 4412642656
|
|
|
|
|
|
|
|
|
|
|
|
Ko-Llama3-Luxia-8B-Q3_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:839c4a494978781067b7ca2df43fff232a1139c43e619cea829f933c028c78f1
|
| 3 |
-
size 4109604192
|
|
|
|
|
|
|
|
|
|
|
|
Ko-Llama3-Luxia-8B-Q3_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:c1d8e6df7225d0bec306c3c5e42858cb4c5a323cb05eaa4097f0b9b00e9eb54f
|
| 3 |
-
size 3755185504
|
|
|
|
|
|
|
|
|
|
|
|
Ko-Llama3-Luxia-8B-Q4_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:08df33ecba754467c3acb0b92fbaead5d0068eb51b0f62d62b2075559b36ee5d
|
| 3 |
-
size 4761437536
|
|
|
|
|
|
|
|
|
|
|
|
Ko-Llama3-Luxia-8B-Q4_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:d2dd2240303358c296c8ac2022d6591cffe7e86a44b24a3839e5076df9ea151e
|
| 3 |
-
size 5020960096
|
|
|
|
|
|
|
|
|
|
|
|
Ko-Llama3-Luxia-8B-Q4_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:b5e0c8751b9126725b7b30fb78269729de3946cfba7d41753c2f798f2aeb8bb8
|
| 3 |
-
size 4792894816
|
|
|
|
|
|
|
|
|
|
|
|
Ko-Llama3-Luxia-8B-Q5_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:1b6d46ccee56ea4375fe70ab533d6a9ed49f9b193422e3efda5c0808c7b17847
|
| 3 |
-
size 5708498272
|
|
|
|
|
|
|
|
|
|
|
|
Ko-Llama3-Luxia-8B-Q5_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:4aaf6a7b8aba6fe72b233b220a5ab31dd274444b55884d6f92c78196820774aa
|
| 3 |
-
size 5842191712
|
|
|
|
|
|
|
|
|
|
|
|
Ko-Llama3-Luxia-8B-Q5_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:c7cc18c269d4fb36669a0b150562a03f9b367d4121f9937aac7004b3d7f75f65
|
| 3 |
-
size 5708498272
|
|
|
|
|
|
|
|
|
|
|
|
Ko-Llama3-Luxia-8B-Q6_K.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:e41de8bffe3f14d22f5af6696e6450d0ef3f22c89f9f3f663a4f80aed6f27552
|
| 3 |
-
size 6714750304
|
|
|
|
|
|
|
|
|
|
|
|
Ko-Llama3-Luxia-8B-Q8_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:7be368a09c5e4651fd4ed727daebe61fb7a2a3341c6187215df97756f2c1cce0
|
| 3 |
-
size 8694306144
|
|
|
|
|
|
|
|
|
|
|
|