Instructions to use joongi007/ko-llama-3.1-5b-instruct-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use joongi007/ko-llama-3.1-5b-instruct-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="joongi007/ko-llama-3.1-5b-instruct-GGUF", filename="ko-llama-3.1-5b-instruct-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 joongi007/ko-llama-3.1-5b-instruct-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 joongi007/ko-llama-3.1-5b-instruct-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf joongi007/ko-llama-3.1-5b-instruct-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 joongi007/ko-llama-3.1-5b-instruct-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf joongi007/ko-llama-3.1-5b-instruct-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 joongi007/ko-llama-3.1-5b-instruct-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf joongi007/ko-llama-3.1-5b-instruct-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 joongi007/ko-llama-3.1-5b-instruct-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf joongi007/ko-llama-3.1-5b-instruct-GGUF:Q4_K_M
Use Docker
docker model run hf.co/joongi007/ko-llama-3.1-5b-instruct-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use joongi007/ko-llama-3.1-5b-instruct-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "joongi007/ko-llama-3.1-5b-instruct-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": "joongi007/ko-llama-3.1-5b-instruct-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/joongi007/ko-llama-3.1-5b-instruct-GGUF:Q4_K_M
- Ollama
How to use joongi007/ko-llama-3.1-5b-instruct-GGUF with Ollama:
ollama run hf.co/joongi007/ko-llama-3.1-5b-instruct-GGUF:Q4_K_M
- Unsloth Studio
How to use joongi007/ko-llama-3.1-5b-instruct-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 joongi007/ko-llama-3.1-5b-instruct-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 joongi007/ko-llama-3.1-5b-instruct-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for joongi007/ko-llama-3.1-5b-instruct-GGUF to start chatting
- Pi
How to use joongi007/ko-llama-3.1-5b-instruct-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf joongi007/ko-llama-3.1-5b-instruct-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "joongi007/ko-llama-3.1-5b-instruct-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use joongi007/ko-llama-3.1-5b-instruct-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf joongi007/ko-llama-3.1-5b-instruct-GGUF:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default joongi007/ko-llama-3.1-5b-instruct-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use joongi007/ko-llama-3.1-5b-instruct-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf joongi007/ko-llama-3.1-5b-instruct-GGUF:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "joongi007/ko-llama-3.1-5b-instruct-GGUF:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use joongi007/ko-llama-3.1-5b-instruct-GGUF with Docker Model Runner:
docker model run hf.co/joongi007/ko-llama-3.1-5b-instruct-GGUF:Q4_K_M
- Lemonade
How to use joongi007/ko-llama-3.1-5b-instruct-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull joongi007/ko-llama-3.1-5b-instruct-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.ko-llama-3.1-5b-instruct-GGUF-Q4_K_M
List all available models
lemonade list
Upload 15 files
Browse files- .gitattributes +15 -0
- ko-llama-3.1-5b-instruct-Q2_K.gguf +3 -0
- ko-llama-3.1-5b-instruct-Q3_K_L.gguf +3 -0
- ko-llama-3.1-5b-instruct-Q3_K_M.gguf +3 -0
- ko-llama-3.1-5b-instruct-Q3_K_S.gguf +3 -0
- ko-llama-3.1-5b-instruct-Q4_0.gguf +3 -0
- ko-llama-3.1-5b-instruct-Q4_1.gguf +3 -0
- ko-llama-3.1-5b-instruct-Q4_K_M.gguf +3 -0
- ko-llama-3.1-5b-instruct-Q4_K_S.gguf +3 -0
- ko-llama-3.1-5b-instruct-Q5_0.gguf +3 -0
- ko-llama-3.1-5b-instruct-Q5_1.gguf +3 -0
- ko-llama-3.1-5b-instruct-Q5_K_M.gguf +3 -0
- ko-llama-3.1-5b-instruct-Q5_K_S.gguf +3 -0
- ko-llama-3.1-5b-instruct-Q6_K.gguf +3 -0
- ko-llama-3.1-5b-instruct-Q8_0.gguf +3 -0
- ko-llama-3.1-5b-instruct.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,18 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
ko-llama-3.1-5b-instruct-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
ko-llama-3.1-5b-instruct-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
ko-llama-3.1-5b-instruct-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
ko-llama-3.1-5b-instruct-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
ko-llama-3.1-5b-instruct-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
ko-llama-3.1-5b-instruct-Q4_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
ko-llama-3.1-5b-instruct-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
ko-llama-3.1-5b-instruct-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
ko-llama-3.1-5b-instruct-Q5_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
ko-llama-3.1-5b-instruct-Q5_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
ko-llama-3.1-5b-instruct-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
ko-llama-3.1-5b-instruct-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
ko-llama-3.1-5b-instruct-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
ko-llama-3.1-5b-instruct-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
ko-llama-3.1-5b-instruct.gguf filter=lfs diff=lfs merge=lfs -text
|
ko-llama-3.1-5b-instruct-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:864e4031a8b319260235a8c7a4303926ccb69f20e367ab7d57590956f3f4c4a9
|
| 3 |
+
size 2376642336
|
ko-llama-3.1-5b-instruct-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:18dab0028773beeaae62826a7f63882086fefe76118e288ef99e4b52482dcc8f
|
| 3 |
+
size 3179007776
|
ko-llama-3.1-5b-instruct-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9fadb97da718b1c24e539604d840b1483dfe9ed5daa22bba322dd4da94a22647
|
| 3 |
+
size 2968244000
|
ko-llama-3.1-5b-instruct-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a5a66abf3b6b6c216cf8c6b51dc03c3dcfc5fef9064c36cf027e2fde725875e1
|
| 3 |
+
size 2727005984
|
ko-llama-3.1-5b-instruct-Q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:54128fff93e938025cd4e14470d8e269f8b81937554f155c9bdcff5e5e398748
|
| 3 |
+
size 3434049312
|
ko-llama-3.1-5b-instruct-Q4_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9733d4d18093f855d89a841cf211b6b36c84d8824ded899e0788f765bc0fe872
|
| 3 |
+
size 3766775584
|
ko-llama-3.1-5b-instruct-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:997d69750ddce54fe53df955cb73bed3217afa249227f61d568374645f5c385f
|
| 3 |
+
size 3596250912
|
ko-llama-3.1-5b-instruct-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:95e1bd1b10497518df3a5cde06470715f09d082230b728acfb05fafdbfc325e1
|
| 3 |
+
size 3450826528
|
ko-llama-3.1-5b-instruct-Q5_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:54893fa6b393d49f1f61846f48cd0baf42d7160cd08e5b9cbdd035715c06228c
|
| 3 |
+
size 4099501856
|
ko-llama-3.1-5b-instruct-Q5_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:06957cc66b93fc30d234e26583076bac967ea15a9d0ff081d1ff0e5b7041a827
|
| 3 |
+
size 4432228128
|
ko-llama-3.1-5b-instruct-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6265e1cb94f8b073d0b819df1312bbeeff0362c9a1df41df1c866b4ae1bca60b
|
| 3 |
+
size 4183060256
|
ko-llama-3.1-5b-instruct-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:030da256e5101744c3d1f6ae84d0734bea89d9fc3518280c0e8ef5efde5fa938
|
| 3 |
+
size 4099501856
|
ko-llama-3.1-5b-instruct-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ef12932c7926064710f51f05ca8570d14797d5496d6447c419caa241c208e485
|
| 3 |
+
size 4806545184
|
ko-llama-3.1-5b-instruct-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a136ca08aee74d9cf31051d2563014f115ac2d831b388e4633b00ddaf1d36057
|
| 3 |
+
size 6223089440
|
ko-llama-3.1-5b-instruct.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8b882bc473eaa03f61fa8257ef9d1c47966d491877fa0db848b0297dbcb0ae8e
|
| 3 |
+
size 11706486560
|