Instructions to use tensorblock/NuExtract-1.5-tiny-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use tensorblock/NuExtract-1.5-tiny-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="tensorblock/NuExtract-1.5-tiny-GGUF", filename="NuExtract-1.5-tiny-Q2_K.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use tensorblock/NuExtract-1.5-tiny-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf tensorblock/NuExtract-1.5-tiny-GGUF:Q2_K # Run inference directly in the terminal: llama-cli -hf tensorblock/NuExtract-1.5-tiny-GGUF:Q2_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf tensorblock/NuExtract-1.5-tiny-GGUF:Q2_K # Run inference directly in the terminal: llama-cli -hf tensorblock/NuExtract-1.5-tiny-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/NuExtract-1.5-tiny-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/NuExtract-1.5-tiny-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/NuExtract-1.5-tiny-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/NuExtract-1.5-tiny-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/NuExtract-1.5-tiny-GGUF:Q2_K
- LM Studio
- Jan
- vLLM
How to use tensorblock/NuExtract-1.5-tiny-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tensorblock/NuExtract-1.5-tiny-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/NuExtract-1.5-tiny-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/tensorblock/NuExtract-1.5-tiny-GGUF:Q2_K
- Ollama
How to use tensorblock/NuExtract-1.5-tiny-GGUF with Ollama:
ollama run hf.co/tensorblock/NuExtract-1.5-tiny-GGUF:Q2_K
- Unsloth Studio new
How to use tensorblock/NuExtract-1.5-tiny-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 tensorblock/NuExtract-1.5-tiny-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 tensorblock/NuExtract-1.5-tiny-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for tensorblock/NuExtract-1.5-tiny-GGUF to start chatting
- Pi new
How to use tensorblock/NuExtract-1.5-tiny-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf tensorblock/NuExtract-1.5-tiny-GGUF:Q2_K
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": "tensorblock/NuExtract-1.5-tiny-GGUF:Q2_K" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use tensorblock/NuExtract-1.5-tiny-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf tensorblock/NuExtract-1.5-tiny-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/NuExtract-1.5-tiny-GGUF:Q2_K
Run Hermes
hermes
- Docker Model Runner
How to use tensorblock/NuExtract-1.5-tiny-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/NuExtract-1.5-tiny-GGUF:Q2_K
- Lemonade
How to use tensorblock/NuExtract-1.5-tiny-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/NuExtract-1.5-tiny-GGUF:Q2_K
Run and chat with the model
lemonade run user.NuExtract-1.5-tiny-GGUF-Q2_K
List all available models
lemonade list
Remove .gguf files (keep Q2_K.gguf)
Browse files- NuExtract-1.5-tiny-Q3_K_L.gguf +0 -3
- NuExtract-1.5-tiny-Q3_K_M.gguf +0 -3
- NuExtract-1.5-tiny-Q3_K_S.gguf +0 -3
- NuExtract-1.5-tiny-Q4_0.gguf +0 -3
- NuExtract-1.5-tiny-Q4_K_M.gguf +0 -3
- NuExtract-1.5-tiny-Q4_K_S.gguf +0 -3
- NuExtract-1.5-tiny-Q5_0.gguf +0 -3
- NuExtract-1.5-tiny-Q5_K_M.gguf +0 -3
- NuExtract-1.5-tiny-Q5_K_S.gguf +0 -3
- NuExtract-1.5-tiny-Q6_K.gguf +0 -3
- NuExtract-1.5-tiny-Q8_0.gguf +0 -3
NuExtract-1.5-tiny-Q3_K_L.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:6fbd618f8bf0f19d0dfb7d66938cf660f90eb334219940eeebf9270fc1ef3f81
|
| 3 |
-
size 369357984
|
|
|
|
|
|
|
|
|
|
|
|
NuExtract-1.5-tiny-Q3_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:e399b813cd7c2448aca035c54ebe557ceacd171160ebc0bf253362a0429fd27b
|
| 3 |
-
size 355466400
|
|
|
|
|
|
|
|
|
|
|
|
NuExtract-1.5-tiny-Q3_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:c84a9cc8102c39894548b321861bbc8e73f256e95ee2b9c13419aa486d8aa6c3
|
| 3 |
-
size 338263200
|
|
|
|
|
|
|
|
|
|
|
|
NuExtract-1.5-tiny-Q4_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:9e99bc02e3a97efb8228990d82cd1f7e73b856824f46a6ff4dd97894b132deeb
|
| 3 |
-
size 352154784
|
|
|
|
|
|
|
|
|
|
|
|
NuExtract-1.5-tiny-Q4_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:22fbf67aac7f73699ff10781ce4582a339df2240e2793a545a16f5dbbb72edec
|
| 3 |
-
size 397807776
|
|
|
|
|
|
|
|
|
|
|
|
NuExtract-1.5-tiny-Q4_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:a6a8fac9e8d11b440331c85ad6a3a8c7cd6d9542330e78d44ebb5981cea77812
|
| 3 |
-
size 385471648
|
|
|
|
|
|
|
|
|
|
|
|
NuExtract-1.5-tiny-Q5_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:6eb61fe2decbc4a3b6612cbc9be9867624a8a13caed3ab281cfdab00887c1ee6
|
| 3 |
-
size 396883104
|
|
|
|
|
|
|
|
|
|
|
|
NuExtract-1.5-tiny-Q5_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:1e84b439e46b6e0288c968af94a6097d0a909c8e5d58d75b5a39758d08248188
|
| 3 |
-
size 420085920
|
|
|
|
|
|
|
|
|
|
|
|
NuExtract-1.5-tiny-Q5_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:8118a0e33508cd492604c89689d30dcbb093424445f6f36a3da5647580faf26b
|
| 3 |
-
size 412710048
|
|
|
|
|
|
|
|
|
|
|
|
NuExtract-1.5-tiny-Q6_K.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:b9b3388936c3f7aad55755da2f6aafcfa5bd72336107c1762353da056ce1486a
|
| 3 |
-
size 505736352
|
|
|
|
|
|
|
|
|
|
|
|
NuExtract-1.5-tiny-Q8_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:b01501b4be47259fe6c88c9e8f5415e70ed1eedd794fa8e1a78d97b782fde28a
|
| 3 |
-
size 531068064
|
|
|
|
|
|
|
|
|
|
|
|