Instructions to use second-state/Llama-3.3-70B-Instruct-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use second-state/Llama-3.3-70B-Instruct-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="second-state/Llama-3.3-70B-Instruct-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("second-state/Llama-3.3-70B-Instruct-GGUF") model = AutoModelForCausalLM.from_pretrained("second-state/Llama-3.3-70B-Instruct-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use second-state/Llama-3.3-70B-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 second-state/Llama-3.3-70B-Instruct-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf second-state/Llama-3.3-70B-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 second-state/Llama-3.3-70B-Instruct-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf second-state/Llama-3.3-70B-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 second-state/Llama-3.3-70B-Instruct-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf second-state/Llama-3.3-70B-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 second-state/Llama-3.3-70B-Instruct-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf second-state/Llama-3.3-70B-Instruct-GGUF:Q4_K_M
Use Docker
docker model run hf.co/second-state/Llama-3.3-70B-Instruct-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use second-state/Llama-3.3-70B-Instruct-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "second-state/Llama-3.3-70B-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": "second-state/Llama-3.3-70B-Instruct-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/second-state/Llama-3.3-70B-Instruct-GGUF:Q4_K_M
- SGLang
How to use second-state/Llama-3.3-70B-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 "second-state/Llama-3.3-70B-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": "second-state/Llama-3.3-70B-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 "second-state/Llama-3.3-70B-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": "second-state/Llama-3.3-70B-Instruct-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use second-state/Llama-3.3-70B-Instruct-GGUF with Ollama:
ollama run hf.co/second-state/Llama-3.3-70B-Instruct-GGUF:Q4_K_M
- Unsloth Studio
How to use second-state/Llama-3.3-70B-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 second-state/Llama-3.3-70B-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 second-state/Llama-3.3-70B-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 second-state/Llama-3.3-70B-Instruct-GGUF to start chatting
- Pi
How to use second-state/Llama-3.3-70B-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 second-state/Llama-3.3-70B-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": "second-state/Llama-3.3-70B-Instruct-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use second-state/Llama-3.3-70B-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 second-state/Llama-3.3-70B-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 second-state/Llama-3.3-70B-Instruct-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use second-state/Llama-3.3-70B-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 second-state/Llama-3.3-70B-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 "second-state/Llama-3.3-70B-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 second-state/Llama-3.3-70B-Instruct-GGUF with Docker Model Runner:
docker model run hf.co/second-state/Llama-3.3-70B-Instruct-GGUF:Q4_K_M
- Lemonade
How to use second-state/Llama-3.3-70B-Instruct-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull second-state/Llama-3.3-70B-Instruct-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Llama-3.3-70B-Instruct-GGUF-Q4_K_M
List all available models
lemonade list
Update models
Browse files- Llama-3.3-70B-Instruct-Q2_K.gguf +1 -1
- Llama-3.3-70B-Instruct-Q3_K_L.gguf +1 -1
- Llama-3.3-70B-Instruct-Q3_K_M.gguf +1 -1
- Llama-3.3-70B-Instruct-Q3_K_S.gguf +1 -1
- Llama-3.3-70B-Instruct-Q4_0.gguf +1 -1
- Llama-3.3-70B-Instruct-Q4_K_M.gguf +1 -1
- Llama-3.3-70B-Instruct-Q4_K_S.gguf +1 -1
- Llama-3.3-70B-Instruct-Q5_0.gguf +1 -1
- Llama-3.3-70B-Instruct-Q5_K_S.gguf +1 -1
- Llama-3.3-70B-Instruct-Q6_K-00001-of-00002.gguf +1 -1
- Llama-3.3-70B-Instruct-Q6_K-00002-of-00002.gguf +1 -1
- Llama-3.3-70B-Instruct-Q8_0-00001-of-00003.gguf +1 -1
- Llama-3.3-70B-Instruct-Q8_0-00002-of-00003.gguf +1 -1
- Llama-3.3-70B-Instruct-Q8_0-00003-of-00003.gguf +1 -1
- Llama-3.3-70B-Instruct-f16-00001-of-00005.gguf +1 -1
- Llama-3.3-70B-Instruct-f16-00002-of-00005.gguf +1 -1
- Llama-3.3-70B-Instruct-f16-00003-of-00005.gguf +1 -1
- Llama-3.3-70B-Instruct-f16-00004-of-00005.gguf +1 -1
- Llama-3.3-70B-Instruct-f16-00005-of-00005.gguf +1 -1
Llama-3.3-70B-Instruct-Q2_K.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 26375113408
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f1d7f1294e4462b310560ca3a43f24df7023b7702712ccbb65f8ac0f8d917814
|
| 3 |
size 26375113408
|
Llama-3.3-70B-Instruct-Q3_K_L.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 37140597440
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a058f6687f8dc4910b3807467d7043355f4a5710d2260b57b9a4900b1097001f
|
| 3 |
size 37140597440
|
Llama-3.3-70B-Instruct-Q3_K_M.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 34267499200
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:36894f6940358ec0204f9cf8d117153f24249523a818594863f2eeb0cfc50571
|
| 3 |
size 34267499200
|
Llama-3.3-70B-Instruct-Q3_K_S.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 30912056000
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9e9888150a6173933d60f3b666128dd868e1f29e8360c2fe4bd190e6c33ec264
|
| 3 |
size 30912056000
|
Llama-3.3-70B-Instruct-Q4_0.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 39969737408
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dfb52cdeed3b2030a2dc9f48f200c3e440ac275ad791908ab9fefbb79eca9f77
|
| 3 |
size 39969737408
|
Llama-3.3-70B-Instruct-Q4_K_M.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 42520398528
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:516f4f2eacca4294f4e0afe3db48a66db934f6f76f14eda12eb2d77278b5d964
|
| 3 |
size 42520398528
|
Llama-3.3-70B-Instruct-Q4_K_S.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 40347224768
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0038d89985f144e676d62c2036bc31891f0f5d54a4e2a257434da84037f3d901
|
| 3 |
size 40347224768
|
Llama-3.3-70B-Instruct-Q5_0.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 48657451712
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1c99853d571fca53bac5b19e95090c17dd7d15f599e976ad1187369ae0cedad7
|
| 3 |
size 48657451712
|
Llama-3.3-70B-Instruct-Q5_K_S.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 48657451712
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b059da6807ba93f92d6f4d3882d013e806ee36880b730e3e557c8be1a5371b16
|
| 3 |
size 48657451712
|
Llama-3.3-70B-Instruct-Q6_K-00001-of-00002.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 29933778976
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0d82800668c98f1c1cb936173fb75870f721054c807d0fba741cb894eb509d55
|
| 3 |
size 29933778976
|
Llama-3.3-70B-Instruct-Q6_K-00002-of-00002.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 27954369376
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ab932c7fce61b9772c5d527b3dca855cdcc05c22680a0a80ff98c882f12d652d
|
| 3 |
size 27954369376
|
Llama-3.3-70B-Instruct-Q8_0-00001-of-00003.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 29926007648
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:35a270a60a047a3d4ea1deb4e71c0f73f1d565b804e4e99641d465525db8ba83
|
| 3 |
size 29926007648
|
Llama-3.3-70B-Instruct-Q8_0-00002-of-00003.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 29753427360
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:55aefe880d37f7bbf67ff30b766e4e53098bf632d6f030a65dc8d70ecc14a639
|
| 3 |
size 29753427360
|
Llama-3.3-70B-Instruct-Q8_0-00003-of-00003.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 15295619840
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e01b37346e8f46deead83864025c0983d564b3404551693c58e45b2c3bcdf49f
|
| 3 |
size 15295619840
|
Llama-3.3-70B-Instruct-f16-00001-of-00005.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 29960438944
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1f6349f217735ab0dc0e3703f7c3c867d0a61479b91306997418b18630c741e1
|
| 3 |
size 29960438944
|
Llama-3.3-70B-Instruct-f16-00002-of-00005.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 29562578048
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e660feb0d0d2d7e1fed0a94aee6a9d6ca7ab10f1cc660e2730d3be2941e9ff71
|
| 3 |
size 29562578048
|
Llama-3.3-70B-Instruct-f16-00003-of-00005.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 29864633824
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:883a7230a36ebc1e822bed71cd82a6f8235d277aadeaf67f4812cffb1ed561cf
|
| 3 |
size 29864633824
|
Llama-3.3-70B-Instruct-f16-00004-of-00005.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 29562545216
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e4f5a58a434852bd6ebe68fc95c6030b3d4ccfe6be45edba8e9d5cd27ba59880
|
| 3 |
size 29562545216
|
Llama-3.3-70B-Instruct-f16-00005-of-00005.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 22167722464
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d206ce9e696c83d06a464374bf2f116cb38530b09910a415447f97e54e698362
|
| 3 |
size 22167722464
|