Instructions to use llmware/bling-qwen-mini-tool with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use llmware/bling-qwen-mini-tool with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("llmware/bling-qwen-mini-tool", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use llmware/bling-qwen-mini-tool 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 llmware/bling-qwen-mini-tool # Run inference directly in the terminal: llama cli -hf llmware/bling-qwen-mini-tool
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf llmware/bling-qwen-mini-tool # Run inference directly in the terminal: llama cli -hf llmware/bling-qwen-mini-tool
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 llmware/bling-qwen-mini-tool # Run inference directly in the terminal: ./llama-cli -hf llmware/bling-qwen-mini-tool
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 llmware/bling-qwen-mini-tool # Run inference directly in the terminal: ./build/bin/llama-cli -hf llmware/bling-qwen-mini-tool
Use Docker
docker model run hf.co/llmware/bling-qwen-mini-tool
- LM Studio
- Jan
- Ollama
How to use llmware/bling-qwen-mini-tool with Ollama:
ollama run hf.co/llmware/bling-qwen-mini-tool
- Unsloth Desktop
- Docker Model Runner
How to use llmware/bling-qwen-mini-tool with Docker Model Runner:
docker model run hf.co/llmware/bling-qwen-mini-tool
- Lemonade
How to use llmware/bling-qwen-mini-tool with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull llmware/bling-qwen-mini-tool
Run and chat with the model
lemonade run user.bling-qwen-mini-tool-{{QUANT_TAG}}List all available models
lemonade list
- Atomic Chat
Update config.json
Browse files- config.json +4 -4
config.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
| 1 |
{
|
| 2 |
-
"model_name": "bling-qwen-
|
| 3 |
-
"model_ft_base": "bling-
|
| 4 |
"quantization": "4Q_K_M GGUF",
|
| 5 |
"model_base": "qwen2",
|
| 6 |
"model_type": "qwen2",
|
| 7 |
"tokenizer": "qwen",
|
| 8 |
-
"parameters": "
|
| 9 |
-
"description": "bling-qwen-
|
| 10 |
"prompt_wrapper": "human_bot",
|
| 11 |
"prompt_format": "<human> {context_passage} \n {question} \n<bot>:",
|
| 12 |
"output_format": "{text}",
|
|
|
|
| 1 |
{
|
| 2 |
+
"model_name": "bling-qwen-mini-tool",
|
| 3 |
+
"model_ft_base": "bling-mini-tool",
|
| 4 |
"quantization": "4Q_K_M GGUF",
|
| 5 |
"model_base": "qwen2",
|
| 6 |
"model_type": "qwen2",
|
| 7 |
"tokenizer": "qwen",
|
| 8 |
+
"parameters": "1.5 billion",
|
| 9 |
+
"description": "bling-qwen-mini-tool is a quantized fact-based question answering model optimized for inference",
|
| 10 |
"prompt_wrapper": "human_bot",
|
| 11 |
"prompt_format": "<human> {context_passage} \n {question} \n<bot>:",
|
| 12 |
"output_format": "{text}",
|