Instructions to use gg34455/qwegpt 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 gg34455/qwegpt 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 gg34455/qwegpt:Q4_K_M # Run inference directly in the terminal: llama cli -hf gg34455/qwegpt:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf gg34455/qwegpt:Q4_K_M # Run inference directly in the terminal: llama cli -hf gg34455/qwegpt: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 gg34455/qwegpt:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf gg34455/qwegpt: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 gg34455/qwegpt:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf gg34455/qwegpt:Q4_K_M
Use Docker
docker model run hf.co/gg34455/qwegpt:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use gg34455/qwegpt with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "gg34455/qwegpt" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "gg34455/qwegpt", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/gg34455/qwegpt:Q4_K_M
- Ollama
How to use gg34455/qwegpt with Ollama:
ollama run hf.co/gg34455/qwegpt:Q4_K_M
- Unsloth Desktop
- Pi
How to use gg34455/qwegpt with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf gg34455/qwegpt: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": "gg34455/qwegpt:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use gg34455/qwegpt with Docker Model Runner:
docker model run hf.co/gg34455/qwegpt:Q4_K_M
- Lemonade
How to use gg34455/qwegpt with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull gg34455/qwegpt:Q4_K_M
Run and chat with the model
lemonade run user.qwegpt-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use gg34455/qwegpt with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf gg34455/qwegpt: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 gg34455/qwegpt:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use gg34455/qwegpt with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf gg34455/qwegpt: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 "gg34455/qwegpt: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"
Update README.md
Browse files
README.md
CHANGED
|
@@ -3,11 +3,119 @@ license: mit
|
|
| 3 |
language:
|
| 4 |
- en
|
| 5 |
base_model:
|
| 6 |
-
- Qwen/
|
| 7 |
-
- unsloth/
|
| 8 |
pipeline_tag: text-generation
|
| 9 |
tags:
|
| 10 |
- code
|
| 11 |
- art
|
| 12 |
- finetuned
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
---
|
|
|
|
| 3 |
language:
|
| 4 |
- en
|
| 5 |
base_model:
|
| 6 |
+
- Qwen/Qwen2.5-0.5B-Instruct
|
| 7 |
+
- unsloth/Qwen2.5-0.5B-Instruct
|
| 8 |
pipeline_tag: text-generation
|
| 9 |
tags:
|
| 10 |
- code
|
| 11 |
- art
|
| 12 |
- finetuned
|
| 13 |
+
- assistant
|
| 14 |
+
---
|
| 15 |
+
<p align="center">
|
| 16 |
+
<img src="https://www.bing.com/th/id/OIG4.tnUx7g.IxqvidRfletck?w=540&h=540&c=6&r=0&o=5&pid=ImgGn" width="300"/>
|
| 17 |
+
</p>
|
| 18 |
+
# qwegpt
|
| 19 |
+
|
| 20 |
+
qwegpt is a fine-tuned conversational AI model designed to provide clear, helpful, and structured responses with a natural, ChatGPT-like behavior. It is optimized for coding assistance, creative tasks, and general problem-solving.
|
| 21 |
+
|
| 22 |
+
---
|
| 23 |
+
|
| 24 |
+
## ๐ง Model Details
|
| 25 |
+
|
| 26 |
+
### Model Description
|
| 27 |
+
|
| 28 |
+
qwegpt is built on top of Qwen2.5-0.5B-Instruct and further fine-tuned to improve helpfulness, clarity, and user guidance. The model focuses on delivering concise yet informative answers, adapting to both beginners and more advanced users.
|
| 29 |
+
|
| 30 |
+
It is designed to:
|
| 31 |
+
- Explain concepts in a simple and structured way
|
| 32 |
+
- Assist with coding and debugging
|
| 33 |
+
- Generate creative content (prompts, ideas, UI concepts)
|
| 34 |
+
- Provide step-by-step guidance when needed
|
| 35 |
+
|
| 36 |
+
---
|
| 37 |
+
|
| 38 |
+
## ๐ Intended Use
|
| 39 |
+
|
| 40 |
+
### Primary Use Cases
|
| 41 |
+
- Coding help and debugging guidance
|
| 42 |
+
- Learning and explaining technical concepts
|
| 43 |
+
- Generating creative prompts (art, UI, ideas)
|
| 44 |
+
- General-purpose assistant tasks
|
| 45 |
+
|
| 46 |
+
### Out-of-Scope Use
|
| 47 |
+
- High-risk domains requiring strict accuracy (e.g., legal, medical advice)
|
| 48 |
+
- Tasks requiring guaranteed factual correctness
|
| 49 |
+
|
| 50 |
+
---
|
| 51 |
+
|
| 52 |
+
## โ๏ธ Training Details
|
| 53 |
+
|
| 54 |
+
### Base Model
|
| 55 |
+
- Qwen/Qwen2.5-0.5B-Instruct
|
| 56 |
+
- unsloth/Qwen2.5-0.5B-Instruct
|
| 57 |
+
|
| 58 |
+
### Fine-Tuning Approach
|
| 59 |
+
The model was fine-tuned on a custom dataset focused on:
|
| 60 |
+
- Helpful conversational behavior
|
| 61 |
+
- Clear explanations and structured responses
|
| 62 |
+
- Coding-related Q&A
|
| 63 |
+
- Creative prompt generation
|
| 64 |
+
|
| 65 |
+
The dataset emphasizes:
|
| 66 |
+
- Practical problem-solving
|
| 67 |
+
- Step-by-step guidance
|
| 68 |
+
- Natural and engaging tone
|
| 69 |
+
|
| 70 |
+
---
|
| 71 |
+
|
| 72 |
+
## ๐ Capabilities
|
| 73 |
+
|
| 74 |
+
- Strong at explaining concepts clearly
|
| 75 |
+
- Good at generating structured answers
|
| 76 |
+
- Helpful for coding and debugging tasks
|
| 77 |
+
- Can generate creative prompts and UI ideas
|
| 78 |
+
|
| 79 |
+
---
|
| 80 |
+
|
| 81 |
+
## โ ๏ธ Limitations
|
| 82 |
+
|
| 83 |
+
- May produce incorrect or outdated information
|
| 84 |
+
- Limited reasoning compared to larger models
|
| 85 |
+
- Can struggle with highly complex or multi-step logic
|
| 86 |
+
- Not optimized for real-time or factual verification tasks
|
| 87 |
+
|
| 88 |
+
---
|
| 89 |
+
|
| 90 |
+
## ๐ก Example Usage
|
| 91 |
+
|
| 92 |
+
**Input:**
|
| 93 |
+
"How do I center a div?"
|
| 94 |
+
|
| 95 |
+
**Output:**
|
| 96 |
+
"The cleanest way is to use flexbox on the parent container, which allows you to center elements both horizontally and vertically with minimal effort."
|
| 97 |
+
|
| 98 |
+
---
|
| 99 |
+
|
| 100 |
+
## ๐งฉ Future Improvements
|
| 101 |
+
|
| 102 |
+
- Better reasoning and multi-step problem solving
|
| 103 |
+
- Improved factual accuracy
|
| 104 |
+
- Expanded dataset for more domains
|
| 105 |
+
- Enhanced creativity and style control
|
| 106 |
+
|
| 107 |
+
---
|
| 108 |
+
|
| 109 |
+
## ๐ License
|
| 110 |
+
|
| 111 |
+
This model is released under the MIT License.
|
| 112 |
+
|
| 113 |
+
---
|
| 114 |
+
|
| 115 |
+
## ๐ค Acknowledgements
|
| 116 |
+
|
| 117 |
+
- Qwen team for the base model
|
| 118 |
+
- Unsloth for efficient fine-tuning tools
|
| 119 |
+
- Open-source community for datasets and inspiration
|
| 120 |
+
|
| 121 |
---
|