Text Generation
GGUF
English
Chinese
Spanish
code
spatial
sql
GIS
PostGIS
TensorBlock
GGUF
conversational
Instructions to use tensorblock/markrodrigo_Llama-3.1-8B-Instruct-Spatial-SQL-1.0-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 tensorblock/markrodrigo_Llama-3.1-8B-Instruct-Spatial-SQL-1.0-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 tensorblock/markrodrigo_Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/markrodrigo_Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF:Q2_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf tensorblock/markrodrigo_Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/markrodrigo_Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF:Q2_K
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 tensorblock/markrodrigo_Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/markrodrigo_Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF:Q2_K
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 tensorblock/markrodrigo_Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/markrodrigo_Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/markrodrigo_Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF:Q2_K
- LM Studio
- Jan
- vLLM
How to use tensorblock/markrodrigo_Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tensorblock/markrodrigo_Llama-3.1-8B-Instruct-Spatial-SQL-1.0-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": "tensorblock/markrodrigo_Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/tensorblock/markrodrigo_Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF:Q2_K
- Ollama
How to use tensorblock/markrodrigo_Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF with Ollama:
ollama run hf.co/tensorblock/markrodrigo_Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF:Q2_K
- Unsloth Desktop
- Pi
How to use tensorblock/markrodrigo_Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf tensorblock/markrodrigo_Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF:Q2_K
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "tensorblock/markrodrigo_Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF:Q2_K" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use tensorblock/markrodrigo_Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/markrodrigo_Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF:Q2_K
- Lemonade
How to use tensorblock/markrodrigo_Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/markrodrigo_Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF:Q2_K
Run and chat with the model
lemonade run user.markrodrigo_Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF-Q2_K
List all available models
lemonade list
- Hermes Agent
How to use tensorblock/markrodrigo_Llama-3.1-8B-Instruct-Spatial-SQL-1.0-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 tensorblock/markrodrigo_Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF:Q2_K
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 tensorblock/markrodrigo_Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF:Q2_K
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use tensorblock/markrodrigo_Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf tensorblock/markrodrigo_Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF:Q2_K
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 "tensorblock/markrodrigo_Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF:Q2_K" \ --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"
Remove .gguf files (keep Q2_K.gguf)
Browse files- Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q3_K_L.gguf +0 -3
- Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q3_K_M.gguf +0 -3
- Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q3_K_S.gguf +0 -3
- Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q4_0.gguf +0 -3
- Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q4_K_M.gguf +0 -3
- Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q4_K_S.gguf +0 -3
- Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q5_0.gguf +0 -3
- Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q5_K_M.gguf +0 -3
- Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q5_K_S.gguf +0 -3
- Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q6_K.gguf +0 -3
- Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q8_0.gguf +0 -3
Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q3_K_L.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:4b3828a18353a93be6f7b835d34dc7ba66e5cfde329f3e291e7ea4aa16b2ca90
|
| 3 |
-
size 4321961408
|
|
|
|
|
|
|
|
|
|
|
|
Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q3_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:3f5608f44dac224db31ac931ce981a7de87a6289870663c1826155637d6ca9fd
|
| 3 |
-
size 4018922944
|
|
|
|
|
|
|
|
|
|
|
|
Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q3_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:47f369adfbac6deba568d649dab749273c37e68a842e1081b80a799d5d570dee
|
| 3 |
-
size 3664504256
|
|
|
|
|
|
|
|
|
|
|
|
Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q4_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:e3784c742bc41ca52693f4168f9acbabed7313232c0fa0b7191e4df63dd07943
|
| 3 |
-
size 4661216704
|
|
|
|
|
|
|
|
|
|
|
|
Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q4_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:21d70ab04ee9f9d7ebe2a24898965d86c2c4732a9ce10c6f8c63e187a79e4f33
|
| 3 |
-
size 4920739264
|
|
|
|
|
|
|
|
|
|
|
|
Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q4_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:044ec4cdda14e629213352c5909b639e888d6f47bd6789dc039deade9e63a690
|
| 3 |
-
size 4692673984
|
|
|
|
|
|
|
|
|
|
|
|
Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q5_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:10bfd56d7e76b504ee1e1f934da82537e8e03d9d850a3cc44ac2e9e09dc867a4
|
| 3 |
-
size 5599299008
|
|
|
|
|
|
|
|
|
|
|
|
Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q5_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:651ef574f12ab776df59fcd961fdc321c24e3fb9a29a456229d0ce2a2c72f870
|
| 3 |
-
size 5732992448
|
|
|
|
|
|
|
|
|
|
|
|
Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q5_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:a1b908a5aab0f92a7124584d9ef885986d93a718cfd9197381237bab39f488c9
|
| 3 |
-
size 5599299008
|
|
|
|
|
|
|
|
|
|
|
|
Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q6_K.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:4375c256eb77dc014b82fe4dad0e3ea145ceb267071510945c6641e0d75e267b
|
| 3 |
-
size 6596011456
|
|
|
|
|
|
|
|
|
|
|
|
Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q8_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:c9cb8f8f7400219e75aa72e83c593aeda355e8cdfe2db2b28cf393993132dcc0
|
| 3 |
-
size 8540775872
|
|
|
|
|
|
|
|
|
|
|
|