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 +24 -0
- Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00001-of-00024.gguf +3 -0
- Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00002-of-00024.gguf +3 -0
- Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00003-of-00024.gguf +3 -0
- Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00004-of-00024.gguf +3 -0
- Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00005-of-00024.gguf +3 -0
- Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00006-of-00024.gguf +3 -0
- Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00007-of-00024.gguf +3 -0
- Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00008-of-00024.gguf +3 -0
- Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00009-of-00024.gguf +3 -0
- Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00010-of-00024.gguf +3 -0
- Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00011-of-00024.gguf +3 -0
- Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00012-of-00024.gguf +3 -0
- Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00013-of-00024.gguf +3 -0
- Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00014-of-00024.gguf +3 -0
- Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00015-of-00024.gguf +3 -0
- Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00016-of-00024.gguf +3 -0
- Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00017-of-00024.gguf +3 -0
- Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00018-of-00024.gguf +3 -0
- Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00019-of-00024.gguf +3 -0
- Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00020-of-00024.gguf +3 -0
- Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00021-of-00024.gguf +3 -0
- Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00022-of-00024.gguf +3 -0
- Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00023-of-00024.gguf +3 -0
- Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00024-of-00024.gguf +3 -0
.gitattributes
CHANGED
|
@@ -81,3 +81,27 @@ Q3_K_M/tencent.Hy3.f16.gguf.Q3_K_M.gguf-00008-of-00011.gguf filter=lfs diff=lfs
|
|
| 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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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
|
| 84 |
+
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00001-of-00024.gguf filter=lfs diff=lfs merge=lfs -text
|
| 85 |
+
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00002-of-00024.gguf filter=lfs diff=lfs merge=lfs -text
|
| 86 |
+
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00003-of-00024.gguf filter=lfs diff=lfs merge=lfs -text
|
| 87 |
+
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00004-of-00024.gguf filter=lfs diff=lfs merge=lfs -text
|
| 88 |
+
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00005-of-00024.gguf filter=lfs diff=lfs merge=lfs -text
|
| 89 |
+
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00006-of-00024.gguf filter=lfs diff=lfs merge=lfs -text
|
| 90 |
+
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00007-of-00024.gguf filter=lfs diff=lfs merge=lfs -text
|
| 91 |
+
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00008-of-00024.gguf filter=lfs diff=lfs merge=lfs -text
|
| 92 |
+
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00009-of-00024.gguf filter=lfs diff=lfs merge=lfs -text
|
| 93 |
+
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00010-of-00024.gguf filter=lfs diff=lfs merge=lfs -text
|
| 94 |
+
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00011-of-00024.gguf filter=lfs diff=lfs merge=lfs -text
|
| 95 |
+
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00012-of-00024.gguf filter=lfs diff=lfs merge=lfs -text
|
| 96 |
+
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00013-of-00024.gguf filter=lfs diff=lfs merge=lfs -text
|
| 97 |
+
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00014-of-00024.gguf filter=lfs diff=lfs merge=lfs -text
|
| 98 |
+
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00015-of-00024.gguf filter=lfs diff=lfs merge=lfs -text
|
| 99 |
+
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00016-of-00024.gguf filter=lfs diff=lfs merge=lfs -text
|
| 100 |
+
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00017-of-00024.gguf filter=lfs diff=lfs merge=lfs -text
|
| 101 |
+
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00018-of-00024.gguf filter=lfs diff=lfs merge=lfs -text
|
| 102 |
+
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00019-of-00024.gguf filter=lfs diff=lfs merge=lfs -text
|
| 103 |
+
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00020-of-00024.gguf filter=lfs diff=lfs merge=lfs -text
|
| 104 |
+
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00021-of-00024.gguf filter=lfs diff=lfs merge=lfs -text
|
| 105 |
+
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00022-of-00024.gguf filter=lfs diff=lfs merge=lfs -text
|
| 106 |
+
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00023-of-00024.gguf filter=lfs diff=lfs merge=lfs -text
|
| 107 |
+
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00024-of-00024.gguf filter=lfs diff=lfs merge=lfs -text
|
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00001-of-00024.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7441ceb8bd570f708116a4385df14f704663801aef513c755ac8152371d01812
|
| 3 |
+
size 13252571776
|
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00002-of-00024.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:614d5b3f3b00745b3b34e08b81516965df010a629ccdc71a4bcd03fa8fc5f969
|
| 3 |
+
size 13151609248
|
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00003-of-00024.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:902a4dfb9e5630be076b336d47f4b1089b5db21b4c1c940440dcbaca4a27e6da
|
| 3 |
+
size 13154771488
|
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00004-of-00024.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3b4f9f75f8c9d87b27cf596d32417bb351017186066e2dd5c7c8b217123500e3
|
| 3 |
+
size 13231844000
|
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00005-of-00024.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7682824b104aff186e448562ed9d4f2db4a2d012490d27951296ba1e87306d5a
|
| 3 |
+
size 13151609312
|
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00006-of-00024.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:96fe58207de99a3ad3e8bc1aab06f867128e6c9b4ec89d435e79177f192892e2
|
| 3 |
+
size 13154771552
|
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00007-of-00024.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:06d1de6976acf80fd583a4745fbd6f234acf5f6566f7064456ae6068a6d5989f
|
| 3 |
+
size 13231844000
|
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00008-of-00024.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7b2e2a149e71cb6c760863e2d2d8ff616e2415e41e971718ec013d9ae48c79c5
|
| 3 |
+
size 13151609312
|
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00009-of-00024.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8d5b5a32605c0646d5003b98e1b9a91eae94bc1dfa3a310c73e3930f6955c126
|
| 3 |
+
size 13154771552
|
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00010-of-00024.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:06ecf5108656bafd0fde9fee4a11c95db000cecb87709feedb9bb05022650643
|
| 3 |
+
size 13231844000
|
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00011-of-00024.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e71ae347f56d87ba57be627c18e5259fff6ad447c5ee4d3594d8cab16276075a
|
| 3 |
+
size 13151609312
|
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00012-of-00024.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c597e8ed4f9487fa716d97cdfaa441ddb70cc422cd63e5ff3753d61f68854161
|
| 3 |
+
size 13154771552
|
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00013-of-00024.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4f14dec1866a935b632284acfbbff4668ade965d23dcb507d44346e254b34ef7
|
| 3 |
+
size 13231844000
|
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00014-of-00024.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a8b70f7ad3a591b6ffcecc4b8ec201fc26ca464cd5b8fdea956db4354596d354
|
| 3 |
+
size 13151609312
|
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00015-of-00024.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d58c9f5197210f6a2e5f83b7d442857574b459cbb6e5fabda8b73e50def126b4
|
| 3 |
+
size 13154771552
|
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00016-of-00024.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:adb20f5244eeb51a1377513a54e297b5d8f5f452c08857f95b9fee3da268bb60
|
| 3 |
+
size 13231844000
|
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00017-of-00024.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:94c95e07b38b10204454c526fc997dad2db14eaef73d5d03e4ca4803315fc35f
|
| 3 |
+
size 13151609312
|
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00018-of-00024.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:637a423a844ddd83bf1978c3927f83134cb2c4f43b9c8fb47e2c4b01370f67c1
|
| 3 |
+
size 13154771552
|
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00019-of-00024.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b40c6b98e6ed07aba9c3c0dbf396efced0ee960b6f05c1d7e835b0286874b977
|
| 3 |
+
size 13231844000
|
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00020-of-00024.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:af091dba228edcacaecf402a78630a03a160a86c0bf0ab08b0c006d3115f52bd
|
| 3 |
+
size 13151609312
|
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00021-of-00024.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:75d452a855d092c151b24491751a1bd50bb6ea37aec6d40c413e63f1cb58ca8e
|
| 3 |
+
size 13154771552
|
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00022-of-00024.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5b4ced3a73a7e31b3ce06e0938a662b22fa12c847c559a515113a31fa0267f91
|
| 3 |
+
size 13231844000
|
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00023-of-00024.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8962aebdf41e77d986db6f2fe6feabb539454882d295ebfe41483f7c94182a42
|
| 3 |
+
size 13151609312
|
Q8_0/tencent.Hy3.f16.gguf.Q8_0.gguf-00024-of-00024.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a6ef97ab1e17a7f4e57039e0932e9789bf482bfd03f8ee606d2df33b43febbc2
|
| 3 |
+
size 10491090912
|