Text Generation
GGUF
English
Tigrinya
qwen
offline-ai
troubleshooting
android
unsloth
qlora
tigrinya
eritrea
conversational
Instructions to use Sal-Wwh/EriFix 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 Sal-Wwh/EriFix 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 Sal-Wwh/EriFix:Q4_K_M # Run inference directly in the terminal: llama cli -hf Sal-Wwh/EriFix:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Sal-Wwh/EriFix:Q4_K_M # Run inference directly in the terminal: llama cli -hf Sal-Wwh/EriFix: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 Sal-Wwh/EriFix:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Sal-Wwh/EriFix: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 Sal-Wwh/EriFix:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Sal-Wwh/EriFix:Q4_K_M
Use Docker
docker model run hf.co/Sal-Wwh/EriFix:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use Sal-Wwh/EriFix with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Sal-Wwh/EriFix" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Sal-Wwh/EriFix", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Sal-Wwh/EriFix:Q4_K_M
- Ollama
How to use Sal-Wwh/EriFix with Ollama:
ollama run hf.co/Sal-Wwh/EriFix:Q4_K_M
- Unsloth Desktop
- Pi
How to use Sal-Wwh/EriFix with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Sal-Wwh/EriFix: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": "Sal-Wwh/EriFix:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use Sal-Wwh/EriFix with Docker Model Runner:
docker model run hf.co/Sal-Wwh/EriFix:Q4_K_M
- Lemonade
How to use Sal-Wwh/EriFix with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Sal-Wwh/EriFix:Q4_K_M
Run and chat with the model
lemonade run user.EriFix-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use Sal-Wwh/EriFix with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Sal-Wwh/EriFix: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 Sal-Wwh/EriFix:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use Sal-Wwh/EriFix with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Sal-Wwh/EriFix: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 "Sal-Wwh/EriFix: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"
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,118 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
---
|
| 3 |
+
license: apache-2.0
|
| 4 |
+
language:
|
| 5 |
+
- en
|
| 6 |
+
- ti
|
| 7 |
+
tags:
|
| 8 |
+
- qwen
|
| 9 |
+
- gguf
|
| 10 |
+
- offline-ai
|
| 11 |
+
- troubleshooting
|
| 12 |
+
- android
|
| 13 |
+
- unsloth
|
| 14 |
+
- qlora
|
| 15 |
+
- tigrinya
|
| 16 |
+
- eritrea
|
| 17 |
+
pipeline_tag: text-generation
|
| 18 |
+
---
|
| 19 |
+
|
| 20 |
+
# EriFix AI
|
| 21 |
+
|
| 22 |
+
EriFix AI is an offline troubleshooting and maintenance and Teaching assistant
|
| 23 |
+
fine-tuned for Eritrean and general technology support.
|
| 24 |
+
|
| 25 |
+
The model is optimized for:
|
| 26 |
+
- Android offline AI
|
| 27 |
+
- smartphone troubleshooting
|
| 28 |
+
- laptop and desktop support
|
| 29 |
+
- Windows troubleshooting
|
| 30 |
+
- router and networking problems
|
| 31 |
+
- solar and inverter troubleshooting
|
| 32 |
+
- printer/copier/scanner support
|
| 33 |
+
- DIY repair guidance
|
| 34 |
+
- maintenance assistance
|
| 35 |
+
|
| 36 |
+
---
|
| 37 |
+
|
| 38 |
+
# Base Model
|
| 39 |
+
|
| 40 |
+
Qwen/Qwen2.5-1.5B-Instruct
|
| 41 |
+
|
| 42 |
+
---
|
| 43 |
+
|
| 44 |
+
# Training Method
|
| 45 |
+
|
| 46 |
+
- QLoRA fine-tuning
|
| 47 |
+
- Unsloth optimization
|
| 48 |
+
- 4-bit training
|
| 49 |
+
- GGUF export
|
| 50 |
+
- Quantization: Q4_K_M
|
| 51 |
+
|
| 52 |
+
---
|
| 53 |
+
|
| 54 |
+
# Supported Languages
|
| 55 |
+
|
| 56 |
+
- English
|
| 57 |
+
- Tigrinya
|
| 58 |
+
- Mixed English + Tigrinya
|
| 59 |
+
|
| 60 |
+
---
|
| 61 |
+
|
| 62 |
+
# Optimized For
|
| 63 |
+
|
| 64 |
+
- Android phones
|
| 65 |
+
- Offline AI assistants
|
| 66 |
+
- llama.cpp
|
| 67 |
+
- MLC Chat
|
| 68 |
+
- PocketPal AI
|
| 69 |
+
|
| 70 |
+
---
|
| 71 |
+
|
| 72 |
+
# Recommended RAM
|
| 73 |
+
|
| 74 |
+
Minimum:
|
| 75 |
+
- 4GB RAM
|
| 76 |
+
|
| 77 |
+
Recommended:
|
| 78 |
+
- 6GB+ RAM
|
| 79 |
+
|
| 80 |
+
---
|
| 81 |
+
|
| 82 |
+
# Intended Use
|
| 83 |
+
|
| 84 |
+
EriFix AI is designed for:
|
| 85 |
+
- troubleshooting guidance
|
| 86 |
+
- maintenance support
|
| 87 |
+
- educational technology assistance
|
| 88 |
+
- offline technical support
|
| 89 |
+
- Offline Technological Assistance
|
| 90 |
+
|
| 91 |
+
---
|
| 92 |
+
|
| 93 |
+
# Limitations
|
| 94 |
+
|
| 95 |
+
EriFix AI may:
|
| 96 |
+
- generate incorrect troubleshooting steps
|
| 97 |
+
- hallucinate technical information
|
| 98 |
+
- provide incomplete repair guidance
|
| 99 |
+
|
| 100 |
+
|
| 101 |
+
Because of Low Data all the above mentioned may or may not happen.
|
| 102 |
+
Always verify critical repairs and electrical work carefully.
|
| 103 |
+
|
| 104 |
+
---
|
| 105 |
+
|
| 106 |
+
# Developer
|
| 107 |
+
|
| 108 |
+
Developed by:
|
| 109 |
+
Saleh Omer
|
| 110 |
+
@Sal-Wwh
|
| 111 |
+
salehomer200202@gmail.com
|
| 112 |
+
+2917594507
|
| 113 |
+
|
| 114 |
+
Project:
|
| 115 |
+
EriFix AI
|
| 116 |
+
|
| 117 |
+
Country:
|
| 118 |
+
Eritrea
|