Instructions to use tensorblock/base-eval-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use tensorblock/base-eval-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="tensorblock/base-eval-GGUF", filename="base-eval-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/base-eval-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/base-eval-GGUF:Q2_K # Run inference directly in the terminal: llama-cli -hf tensorblock/base-eval-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/base-eval-GGUF:Q2_K # Run inference directly in the terminal: llama-cli -hf tensorblock/base-eval-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/base-eval-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/base-eval-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/base-eval-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/base-eval-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/base-eval-GGUF:Q2_K
- LM Studio
- Jan
- vLLM
How to use tensorblock/base-eval-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tensorblock/base-eval-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/base-eval-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/tensorblock/base-eval-GGUF:Q2_K
- Ollama
How to use tensorblock/base-eval-GGUF with Ollama:
ollama run hf.co/tensorblock/base-eval-GGUF:Q2_K
- Unsloth Studio new
How to use tensorblock/base-eval-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/base-eval-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/base-eval-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/base-eval-GGUF to start chatting
- Pi new
How to use tensorblock/base-eval-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/base-eval-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/base-eval-GGUF:Q2_K" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use tensorblock/base-eval-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/base-eval-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/base-eval-GGUF:Q2_K
Run Hermes
hermes
- Docker Model Runner
How to use tensorblock/base-eval-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/base-eval-GGUF:Q2_K
- Lemonade
How to use tensorblock/base-eval-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/base-eval-GGUF:Q2_K
Run and chat with the model
lemonade run user.base-eval-GGUF-Q2_K
List all available models
lemonade list
Update README.md
Browse files
README.md
CHANGED
|
@@ -210,44 +210,70 @@ The files were quantized using machines provided by [TensorBlock](https://tensor
|
|
| 210 |
|
| 211 |
## Our projects
|
| 212 |
<table border="1" cellspacing="0" cellpadding="10">
|
| 213 |
-
<tr>
|
| 214 |
-
<th style="font-size: 25px;">Awesome MCP Servers</th>
|
| 215 |
-
<th style="font-size: 25px;">TensorBlock Studio</th>
|
| 216 |
-
</tr>
|
| 217 |
<tr>
|
| 218 |
-
<th
|
| 219 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 220 |
</tr>
|
| 221 |
<tr>
|
| 222 |
<th>A comprehensive collection of Model Context Protocol (MCP) servers.</th>
|
| 223 |
<th>A lightweight, open, and extensible multi-LLM interaction studio.</th>
|
| 224 |
</tr>
|
| 225 |
-
<tr>
|
| 226 |
-
|
| 227 |
-
|
| 228 |
-
|
| 229 |
-
|
| 230 |
-
|
| 231 |
-
|
| 232 |
-
|
| 233 |
-
|
| 234 |
-
|
| 235 |
-
|
| 236 |
-
|
| 237 |
-
|
| 238 |
-
|
| 239 |
-
|
| 240 |
-
|
| 241 |
-
|
| 242 |
-
|
| 243 |
-
|
| 244 |
-
|
| 245 |
-
|
| 246 |
-
|
| 247 |
-
|
| 248 |
-
|
| 249 |
-
|
| 250 |
-
</tr>
|
| 251 |
</table>
|
| 252 |
## Prompt template
|
| 253 |
|
|
|
|
| 210 |
|
| 211 |
## Our projects
|
| 212 |
<table border="1" cellspacing="0" cellpadding="10">
|
|
|
|
|
|
|
|
|
|
|
|
|
| 213 |
<tr>
|
| 214 |
+
<th colspan="2" style="font-size: 25px;">Forge</th>
|
| 215 |
+
</tr>
|
| 216 |
+
<tr>
|
| 217 |
+
<th colspan="2">
|
| 218 |
+
<img src="https://imgur.com/faI5UKh.jpeg" alt="Forge Project" width="900"/>
|
| 219 |
+
</th>
|
| 220 |
+
</tr>
|
| 221 |
+
<tr>
|
| 222 |
+
<th colspan="2">An OpenAI-compatible multi-provider routing layer.</th>
|
| 223 |
+
</tr>
|
| 224 |
+
<tr>
|
| 225 |
+
<th colspan="2">
|
| 226 |
+
<a href="https://github.com/TensorBlock/forge" target="_blank" style="
|
| 227 |
+
display: inline-block;
|
| 228 |
+
padding: 8px 16px;
|
| 229 |
+
background-color: #FF7F50;
|
| 230 |
+
color: white;
|
| 231 |
+
text-decoration: none;
|
| 232 |
+
border-radius: 6px;
|
| 233 |
+
font-weight: bold;
|
| 234 |
+
font-family: sans-serif;
|
| 235 |
+
">🚀 Try it now! 🚀</a>
|
| 236 |
+
</th>
|
| 237 |
+
</tr>
|
| 238 |
+
|
| 239 |
+
<tr>
|
| 240 |
+
<th style="font-size: 25px;">Awesome MCP Servers</th>
|
| 241 |
+
<th style="font-size: 25px;">TensorBlock Studio</th>
|
| 242 |
+
</tr>
|
| 243 |
+
<tr>
|
| 244 |
+
<th><img src="https://imgur.com/2Xov7B7.jpeg" alt="MCP Servers" width="450"/></th>
|
| 245 |
+
<th><img src="https://imgur.com/pJcmF5u.jpeg" alt="Studio" width="450"/></th>
|
| 246 |
</tr>
|
| 247 |
<tr>
|
| 248 |
<th>A comprehensive collection of Model Context Protocol (MCP) servers.</th>
|
| 249 |
<th>A lightweight, open, and extensible multi-LLM interaction studio.</th>
|
| 250 |
</tr>
|
| 251 |
+
<tr>
|
| 252 |
+
<th>
|
| 253 |
+
<a href="https://github.com/TensorBlock/awesome-mcp-servers" target="_blank" style="
|
| 254 |
+
display: inline-block;
|
| 255 |
+
padding: 8px 16px;
|
| 256 |
+
background-color: #FF7F50;
|
| 257 |
+
color: white;
|
| 258 |
+
text-decoration: none;
|
| 259 |
+
border-radius: 6px;
|
| 260 |
+
font-weight: bold;
|
| 261 |
+
font-family: sans-serif;
|
| 262 |
+
">👀 See what we built 👀</a>
|
| 263 |
+
</th>
|
| 264 |
+
<th>
|
| 265 |
+
<a href="https://github.com/TensorBlock/TensorBlock-Studio" target="_blank" style="
|
| 266 |
+
display: inline-block;
|
| 267 |
+
padding: 8px 16px;
|
| 268 |
+
background-color: #FF7F50;
|
| 269 |
+
color: white;
|
| 270 |
+
text-decoration: none;
|
| 271 |
+
border-radius: 6px;
|
| 272 |
+
font-weight: bold;
|
| 273 |
+
font-family: sans-serif;
|
| 274 |
+
">👀 See what we built 👀</a>
|
| 275 |
+
</th>
|
| 276 |
+
</tr>
|
| 277 |
</table>
|
| 278 |
## Prompt template
|
| 279 |
|