Instructions to use dyingc/gguf-scanner-test-samples 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 dyingc/gguf-scanner-test-samples 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 dyingc/gguf-scanner-test-samples # Run inference directly in the terminal: llama cli -hf dyingc/gguf-scanner-test-samples
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf dyingc/gguf-scanner-test-samples # Run inference directly in the terminal: llama cli -hf dyingc/gguf-scanner-test-samples
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 dyingc/gguf-scanner-test-samples # Run inference directly in the terminal: ./llama-cli -hf dyingc/gguf-scanner-test-samples
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 dyingc/gguf-scanner-test-samples # Run inference directly in the terminal: ./build/bin/llama-cli -hf dyingc/gguf-scanner-test-samples
Use Docker
docker model run hf.co/dyingc/gguf-scanner-test-samples
- LM Studio
- Jan
- vLLM
How to use dyingc/gguf-scanner-test-samples with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "dyingc/gguf-scanner-test-samples" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "dyingc/gguf-scanner-test-samples", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/dyingc/gguf-scanner-test-samples
- Ollama
How to use dyingc/gguf-scanner-test-samples with Ollama:
ollama run hf.co/dyingc/gguf-scanner-test-samples
- Unsloth Desktop
- Docker Model Runner
How to use dyingc/gguf-scanner-test-samples with Docker Model Runner:
docker model run hf.co/dyingc/gguf-scanner-test-samples
- Lemonade
How to use dyingc/gguf-scanner-test-samples with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull dyingc/gguf-scanner-test-samples
Run and chat with the model
lemonade run user.gguf-scanner-test-samples-{{QUANT_TAG}}List all available models
lemonade list
- Atomic Chat
Remove PoC/advisory lines from README
Browse files
README.md
CHANGED
|
@@ -9,7 +9,3 @@ model_creator: Meta
|
|
| 9 |
model_type: llama
|
| 10 |
pipeline_tag: text-generation
|
| 11 |
---
|
| 12 |
-
|
| 13 |
-
This repository contains two GGUF test files for scanner validation.
|
| 14 |
-
- `my_model_0.gguf`: intentionally malicious `chat_template` sample
|
| 15 |
-
- `my_model_1.gguf`: sanitized `chat_template` sample
|
|
|
|
| 9 |
model_type: llama
|
| 10 |
pipeline_tag: text-generation
|
| 11 |
---
|
|
|
|
|
|
|
|
|
|
|
|