Instructions to use DevQuasar/tencent.Hy3-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use DevQuasar/tencent.Hy3-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 DevQuasar/tencent.Hy3-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf DevQuasar/tencent.Hy3-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 DevQuasar/tencent.Hy3-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf DevQuasar/tencent.Hy3-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 DevQuasar/tencent.Hy3-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf DevQuasar/tencent.Hy3-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 DevQuasar/tencent.Hy3-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf DevQuasar/tencent.Hy3-GGUF:Q4_K_M
Use Docker
docker model run hf.co/DevQuasar/tencent.Hy3-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use DevQuasar/tencent.Hy3-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "DevQuasar/tencent.Hy3-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": "DevQuasar/tencent.Hy3-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/DevQuasar/tencent.Hy3-GGUF:Q4_K_M
- Ollama
How to use DevQuasar/tencent.Hy3-GGUF with Ollama:
ollama run hf.co/DevQuasar/tencent.Hy3-GGUF:Q4_K_M
- Unsloth Studio
How to use DevQuasar/tencent.Hy3-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 DevQuasar/tencent.Hy3-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 DevQuasar/tencent.Hy3-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for DevQuasar/tencent.Hy3-GGUF to start chatting
- Pi
How to use DevQuasar/tencent.Hy3-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf DevQuasar/tencent.Hy3-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": "DevQuasar/tencent.Hy3-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use DevQuasar/tencent.Hy3-GGUF with Docker Model Runner:
docker model run hf.co/DevQuasar/tencent.Hy3-GGUF:Q4_K_M
- Lemonade
How to use DevQuasar/tencent.Hy3-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull DevQuasar/tencent.Hy3-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.tencent.Hy3-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use DevQuasar/tencent.Hy3-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 DevQuasar/tencent.Hy3-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 DevQuasar/tencent.Hy3-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use DevQuasar/tencent.Hy3-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf DevQuasar/tencent.Hy3-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 "DevQuasar/tencent.Hy3-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"
Upload folder using huggingface_hub
Browse files- .gitattributes +11 -0
- Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00001-of-00011.gguf +3 -0
- Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00002-of-00011.gguf +3 -0
- Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00003-of-00011.gguf +3 -0
- Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00004-of-00011.gguf +3 -0
- Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00005-of-00011.gguf +3 -0
- Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00006-of-00011.gguf +3 -0
- Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00007-of-00011.gguf +3 -0
- Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00008-of-00011.gguf +3 -0
- Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00009-of-00011.gguf +3 -0
- Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00010-of-00011.gguf +3 -0
- Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00011-of-00011.gguf +3 -0
.gitattributes
CHANGED
|
@@ -70,3 +70,14 @@ Q5_K_M/tencent.Hy3.f16.gguf.Q5_K_M.gguf-00013-of-00016.gguf filter=lfs diff=lfs
|
|
| 70 |
Q5_K_M/tencent.Hy3.f16.gguf.Q5_K_M.gguf-00014-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 71 |
Q5_K_M/tencent.Hy3.f16.gguf.Q5_K_M.gguf-00015-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 72 |
Q5_K_M/tencent.Hy3.f16.gguf.Q5_K_M.gguf-00016-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 70 |
Q5_K_M/tencent.Hy3.f16.gguf.Q5_K_M.gguf-00014-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 71 |
Q5_K_M/tencent.Hy3.f16.gguf.Q5_K_M.gguf-00015-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 72 |
Q5_K_M/tencent.Hy3.f16.gguf.Q5_K_M.gguf-00016-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 73 |
+
Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00001-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 74 |
+
Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00002-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 75 |
+
Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00003-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 76 |
+
Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00004-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 77 |
+
Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00005-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 78 |
+
Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00006-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 79 |
+
Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00007-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 80 |
+
Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00008-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 81 |
+
Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00009-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 82 |
+
Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00010-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 83 |
+
Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00011-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00001-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2532533c49af9d8526312e82cec20eb837ac753c6642d607e8a588811feb47cb
|
| 3 |
+
size 13761273344
|
Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00002-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4cc6c1c1cb7d1f5d65746a2aa9d9ed8c205fcb8dd9672e34129a283d2aa42ddc
|
| 3 |
+
size 13577965184
|
Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00003-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2a84e68b7eed2f969f2ac3770494c63035b42073186d6a5a69e97c894092434b
|
| 3 |
+
size 13612275456
|
Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00004-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:88347b91ebf4223b727eab43e23dd3e5f4a60f5989508b8d118df3b64f31ae61
|
| 3 |
+
size 13454169984
|
Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00005-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5ffa1ab1c18e9fe51a33326ef482997bdff151cdbf51fe84d73fce3299e04076
|
| 3 |
+
size 13577965216
|
Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00006-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6dbfcbd2d8c59b0be75854e0dcdebd1b55d5770462bbbaf27bfcca9e220cf20d
|
| 3 |
+
size 13612275456
|
Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00007-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:79561d9296e86c0b5a7c3a25d5b92f903e3b6afebf8be4bb3dc8002d3989dd0b
|
| 3 |
+
size 13454169984
|
Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00008-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e50773f7d53489c64f13ff9a1aa215e980b6e76152c0d6400d2fa73b9136fe3b
|
| 3 |
+
size 13577965216
|
Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00009-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:248daa2d03918f341580b508c1543de75bc9896d7e4ab052942f6b2715e5ea54
|
| 3 |
+
size 13612275456
|
Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00010-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:267dddfb935d7e3ceb83266229cf57ce8bfc095e93a44fc1dc4419a9eb8e6056
|
| 3 |
+
size 13454169984
|
Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00011-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bae5f2167a182c220e354bfe51bb318372926cc5e8b1c66928999ceb5bd03068
|
| 3 |
+
size 5263972480
|