Instructions to use featherless-ai-quants/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 featherless-ai-quants/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 featherless-ai-quants/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf featherless-ai-quants/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-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 featherless-ai-quants/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf featherless-ai-quants/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-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 featherless-ai-quants/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf featherless-ai-quants/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-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 featherless-ai-quants/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf featherless-ai-quants/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF:Q4_K_M
Use Docker
docker model run hf.co/featherless-ai-quants/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use featherless-ai-quants/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 "featherless-ai-quants/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": "featherless-ai-quants/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/featherless-ai-quants/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF:Q4_K_M
- Ollama
How to use featherless-ai-quants/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF with Ollama:
ollama run hf.co/featherless-ai-quants/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use featherless-ai-quants/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 featherless-ai-quants/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF:Q4_K_M
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": "featherless-ai-quants/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use featherless-ai-quants/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF with Docker Model Runner:
docker model run hf.co/featherless-ai-quants/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF:Q4_K_M
- Lemonade
How to use featherless-ai-quants/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 featherless-ai-quants/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use featherless-ai-quants/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 featherless-ai-quants/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-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 featherless-ai-quants/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use featherless-ai-quants/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 featherless-ai-quants/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-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 "featherless-ai-quants/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-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 +12 -0
- README.md +47 -0
- featherless-quants.png +3 -0
- markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-IQ4_XS.gguf +3 -0
- markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q2_K.gguf +3 -0
- markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q3_K_L.gguf +3 -0
- markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q3_K_M.gguf +3 -0
- markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q3_K_S.gguf +3 -0
- markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q4_K_M.gguf +3 -0
- markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q4_K_S.gguf +3 -0
- markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q5_K_M.gguf +3 -0
- markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q5_K_S.gguf +3 -0
- markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q6_K.gguf +3 -0
- markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q8_0.gguf +3 -0
|
@@ -33,3 +33,15 @@ 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 |
+
featherless-quants.png filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0
|
| 3 |
+
pipeline_tag: text-generation
|
| 4 |
+
quantized_by: featherless-ai-quants
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0 GGUF Quantizations π
|
| 8 |
+
|
| 9 |
+

|
| 10 |
+
|
| 11 |
+
*Optimized GGUF quantization files for enhanced model performance*
|
| 12 |
+
|
| 13 |
+
> Powered by [Featherless AI](https://featherless.ai) - run any model you'd like for a simple small fee.
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
## Available Quantizations π
|
| 17 |
+
|
| 18 |
+
| Quantization Type | File | Size |
|
| 19 |
+
|-------------------|------|------|
|
| 20 |
+
| IQ4_XS | [markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-IQ4_XS.gguf](https://huggingface.co/featherless-ai-quants/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF/blob/main/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-IQ4_XS.gguf) | 4276.63 MB |
|
| 21 |
+
| Q2_K | [markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q2_K.gguf](https://huggingface.co/featherless-ai-quants/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF/blob/main/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q2_K.gguf) | 3031.86 MB |
|
| 22 |
+
| Q3_K_L | [markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q3_K_L.gguf](https://huggingface.co/featherless-ai-quants/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF/blob/main/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q3_K_L.gguf) | 4121.74 MB |
|
| 23 |
+
| Q3_K_M | [markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q3_K_M.gguf](https://huggingface.co/featherless-ai-quants/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF/blob/main/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q3_K_M.gguf) | 3832.74 MB |
|
| 24 |
+
| Q3_K_S | [markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q3_K_S.gguf](https://huggingface.co/featherless-ai-quants/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF/blob/main/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q3_K_S.gguf) | 3494.74 MB |
|
| 25 |
+
| Q4_K_M | [markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q4_K_M.gguf](https://huggingface.co/featherless-ai-quants/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF/blob/main/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q4_K_M.gguf) | 4692.78 MB |
|
| 26 |
+
| Q4_K_S | [markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q4_K_S.gguf](https://huggingface.co/featherless-ai-quants/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF/blob/main/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q4_K_S.gguf) | 4475.28 MB |
|
| 27 |
+
| Q5_K_M | [markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q5_K_M.gguf](https://huggingface.co/featherless-ai-quants/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF/blob/main/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q5_K_M.gguf) | 5467.41 MB |
|
| 28 |
+
| Q5_K_S | [markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q5_K_S.gguf](https://huggingface.co/featherless-ai-quants/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF/blob/main/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q5_K_S.gguf) | 5339.91 MB |
|
| 29 |
+
| Q6_K | [markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q6_K.gguf](https://huggingface.co/featherless-ai-quants/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF/blob/main/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q6_K.gguf) | 6290.45 MB |
|
| 30 |
+
| Q8_0 | [markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q8_0.gguf](https://huggingface.co/featherless-ai-quants/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-GGUF/blob/main/markrodrigo-Llama-3.1-8B-Instruct-Spatial-SQL-1.0-Q8_0.gguf) | 8145.12 MB |
|
| 31 |
+
|
| 32 |
+
|
| 33 |
+
---
|
| 34 |
+
|
| 35 |
+
## β‘ Powered by [Featherless AI](https://featherless.ai)
|
| 36 |
+
|
| 37 |
+
### Key Features
|
| 38 |
+
|
| 39 |
+
- π₯ **Instant Hosting** - Deploy any Llama model on HuggingFace instantly
|
| 40 |
+
- π οΈ **Zero Infrastructure** - No server setup or maintenance required
|
| 41 |
+
- π **Vast Compatibility** - Support for 2400+ models and counting
|
| 42 |
+
- π **Affordable Pricing** - Starting at just $10/month
|
| 43 |
+
|
| 44 |
+
---
|
| 45 |
+
|
| 46 |
+
**Links:**
|
| 47 |
+
[Get Started](https://featherless.ai) | [Documentation](https://featherless.ai/docs) | [Models](https://featherless.ai/models)
|
|
Git LFS Details
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:048474abf28742fe31f7fb28047a1a4fb739bfbbc6b860e555bdc39e87f37749
|
| 3 |
+
size 4484367840
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2a9bbedf12755e2a5d01f9065fd5cc94dd2aa5d11d4922b1ab202a640a22b5bc
|
| 3 |
+
size 3179136480
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:599fc3168f98e2e54d76e42f2f3f52b69123b5121376c584d219282f94e569de
|
| 3 |
+
size 4321961440
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cb81f63d3581c75808e81a7fcf570a0635d9919ec6b3ab07b69371eff1753814
|
| 3 |
+
size 4018922976
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a2c450c505e23240de0c2800b8812cafcb1c12e80630a7784e917d9a14d4d6a7
|
| 3 |
+
size 3664504288
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6080f40c3827df03f46c695ae3bd64ca79c64cbe0045335935a0f4adbb17ebb1
|
| 3 |
+
size 4920739296
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:80fcff7c8c27b1112f28b2cc830a9f9da44c88bf56f90b3855f3d3622af46afe
|
| 3 |
+
size 4692674016
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ea3b1a5088512929a51c222c12fb85df1c092d69d3df664e4e1323c147b62f35
|
| 3 |
+
size 5732992480
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3f01bad12a5bd06c3fdcf5f19465062b61635cc08544938463719fa204ad3e34
|
| 3 |
+
size 5599299040
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:74293a0f90abdb36d956bd35fa8b7d131118904b4b0f9c7e27b09c71ab10764f
|
| 3 |
+
size 6596011488
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:09ea853e0ef5b24b40df8d64654f7e61f6beea90821e31db44451e52bc8ac1ee
|
| 3 |
+
size 8540775904
|