Instructions to use prithivMLmods/Luth-Instruct-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use prithivMLmods/Luth-Instruct-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="prithivMLmods/Luth-Instruct-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("prithivMLmods/Luth-Instruct-GGUF", dtype="auto") - llama-cpp-python
How to use prithivMLmods/Luth-Instruct-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="prithivMLmods/Luth-Instruct-GGUF", filename="Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.BF16.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 prithivMLmods/Luth-Instruct-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf prithivMLmods/Luth-Instruct-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf prithivMLmods/Luth-Instruct-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf prithivMLmods/Luth-Instruct-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf prithivMLmods/Luth-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 prithivMLmods/Luth-Instruct-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf prithivMLmods/Luth-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 prithivMLmods/Luth-Instruct-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf prithivMLmods/Luth-Instruct-GGUF:Q4_K_M
Use Docker
docker model run hf.co/prithivMLmods/Luth-Instruct-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use prithivMLmods/Luth-Instruct-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "prithivMLmods/Luth-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": "prithivMLmods/Luth-Instruct-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/prithivMLmods/Luth-Instruct-GGUF:Q4_K_M
- SGLang
How to use prithivMLmods/Luth-Instruct-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "prithivMLmods/Luth-Instruct-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "prithivMLmods/Luth-Instruct-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "prithivMLmods/Luth-Instruct-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "prithivMLmods/Luth-Instruct-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use prithivMLmods/Luth-Instruct-GGUF with Ollama:
ollama run hf.co/prithivMLmods/Luth-Instruct-GGUF:Q4_K_M
- Unsloth Studio
How to use prithivMLmods/Luth-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 prithivMLmods/Luth-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 prithivMLmods/Luth-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 prithivMLmods/Luth-Instruct-GGUF to start chatting
- Pi
How to use prithivMLmods/Luth-Instruct-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf prithivMLmods/Luth-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": "prithivMLmods/Luth-Instruct-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use prithivMLmods/Luth-Instruct-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf prithivMLmods/Luth-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 prithivMLmods/Luth-Instruct-GGUF:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use prithivMLmods/Luth-Instruct-GGUF with Docker Model Runner:
docker model run hf.co/prithivMLmods/Luth-Instruct-GGUF:Q4_K_M
- Lemonade
How to use prithivMLmods/Luth-Instruct-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull prithivMLmods/Luth-Instruct-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Luth-Instruct-GGUF-Q4_K_M
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +19 -0
- Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.BF16.gguf +3 -0
- Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.F16.gguf +3 -0
- Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.F32.gguf +3 -0
- Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q2_K.gguf +3 -0
- Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q3_K_L.gguf +3 -0
- Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q3_K_M.gguf +3 -0
- Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q3_K_S.gguf +3 -0
- Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q4_0.gguf +3 -0
- Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q4_1.gguf +3 -0
- Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q4_K.gguf +3 -0
- Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q4_K_M.gguf +3 -0
- Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q4_K_S.gguf +3 -0
- Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q5_0.gguf +3 -0
- Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q5_1.gguf +3 -0
- Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q5_K.gguf +3 -0
- Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q5_K_M.gguf +3 -0
- Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q5_K_S.gguf +3 -0
- Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q6_K.gguf +3 -0
- Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q8_0.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,22 @@ 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 |
+
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.BF16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.F16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.F32.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q4_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q4_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q5_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q5_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q5_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.BF16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a6a335f0ed7218bbf82a67c467cbd4a80aaee216e03509dc8208b3d22cef85e0
|
| 3 |
+
size 1198182016
|
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.F16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2eae2ffb3bbad008ad88122954a1fa1e454fc4f69a0c9f1fa45e2200607304f9
|
| 3 |
+
size 1198182016
|
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.F32.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b68be7d3aa6c7e5fac3ae7ca3391a3735ced9956fda89d523ebc1c8369aabb3c
|
| 3 |
+
size 2390150784
|
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e20adb023b3d67c3261cdac571d764312426a2031037fcc5e933972555fdfce6
|
| 3 |
+
size 296237696
|
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:33505193189e0c75b13b5df7a0e1e397632e2b6c0f9187ab03e020de537e52fc
|
| 3 |
+
size 368491136
|
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:070d7bb2f7281445fc47db71cbe1fb06959632ec5fc928da39c491dd2e1deb18
|
| 3 |
+
size 347126400
|
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a6300be850a0151b5ffd70f9924812fd2997d60e88dc39873193a5089ef25a30
|
| 3 |
+
size 323074688
|
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1b88914ef1694a0380841479e5f0bf582fa5dd2151ead1118c03d4cd7cd49fb3
|
| 3 |
+
size 381565568
|
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q4_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bb76dbff6347fee8b1960a50923fc4f6243017e834554e089c9af8172b51bd80
|
| 3 |
+
size 409090688
|
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q4_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1132e2c1508c2acc7d3dc097a4ac476402c04751706901dee2e9c196e8e53eba
|
| 3 |
+
size 396704384
|
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1132e2c1508c2acc7d3dc097a4ac476402c04751706901dee2e9c196e8e53eba
|
| 3 |
+
size 396704384
|
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:de5b05e40fc0b4776e4c46561a8dfd5ec7effc0e5e9384f73c36c19c7e431263
|
| 3 |
+
size 383269504
|
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q5_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:59b1d8702b81d00f11720130c216f7debfa307b74880a11e16c52e8327af2933
|
| 3 |
+
size 436615808
|
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q5_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eeaed49d9547b9a0a312d300fb61205f74cd8615114ea7385e1226347c9628de
|
| 3 |
+
size 464140928
|
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q5_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ac3e1c79278d13eca15c93abc75b9563a4c4c71b71a273729875c9133007aa9f
|
| 3 |
+
size 444414592
|
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ac3e1c79278d13eca15c93abc75b9563a4c4c71b71a273729875c9133007aa9f
|
| 3 |
+
size 444414592
|
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:33677b706d28017a8e6c9e819a7301a2df230222deeb518d2cdedcc479d0d736
|
| 3 |
+
size 436615808
|
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:38565715c4027c6fe00c98cb3e73a4346004ed6f11f5205634cf8a9a41f888b1
|
| 3 |
+
size 495106688
|
Luth-0.6B-Instruct-GGUF/Luth-0.6B-Instruct.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4a391ac347c439a851a6f38e84645a455819c286f5ace6c446d10704617ea825
|
| 3 |
+
size 639446656
|