Instructions to use OEvortex/HelpingAI-Lite-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use OEvortex/HelpingAI-Lite-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="OEvortex/HelpingAI-Lite-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("OEvortex/HelpingAI-Lite-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use OEvortex/HelpingAI-Lite-GGUF 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 OEvortex/HelpingAI-Lite-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf OEvortex/HelpingAI-Lite-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf OEvortex/HelpingAI-Lite-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf OEvortex/HelpingAI-Lite-GGUF: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 OEvortex/HelpingAI-Lite-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf OEvortex/HelpingAI-Lite-GGUF: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 OEvortex/HelpingAI-Lite-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf OEvortex/HelpingAI-Lite-GGUF:Q4_K_M
Use Docker
docker model run hf.co/OEvortex/HelpingAI-Lite-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use OEvortex/HelpingAI-Lite-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "OEvortex/HelpingAI-Lite-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": "OEvortex/HelpingAI-Lite-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/OEvortex/HelpingAI-Lite-GGUF:Q4_K_M
- SGLang
How to use OEvortex/HelpingAI-Lite-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "OEvortex/HelpingAI-Lite-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "OEvortex/HelpingAI-Lite-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "OEvortex/HelpingAI-Lite-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "OEvortex/HelpingAI-Lite-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use OEvortex/HelpingAI-Lite-GGUF with Ollama:
ollama run hf.co/OEvortex/HelpingAI-Lite-GGUF:Q4_K_M
- Unsloth Studio
How to use OEvortex/HelpingAI-Lite-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 OEvortex/HelpingAI-Lite-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 OEvortex/HelpingAI-Lite-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for OEvortex/HelpingAI-Lite-GGUF to start chatting
- Docker Model Runner
How to use OEvortex/HelpingAI-Lite-GGUF with Docker Model Runner:
docker model run hf.co/OEvortex/HelpingAI-Lite-GGUF:Q4_K_M
- Lemonade
How to use OEvortex/HelpingAI-Lite-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull OEvortex/HelpingAI-Lite-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.HelpingAI-Lite-GGUF-Q4_K_M
List all available models
lemonade list
- Atomic Chat
Upload folder using huggingface_hub
Browse files- .gitattributes +8 -0
- helpingai-lite.Q2_K.gguf +3 -0
- helpingai-lite.Q3_K_L.gguf +3 -0
- helpingai-lite.Q3_K_M.gguf +3 -0
- helpingai-lite.Q3_K_S.gguf +3 -0
- helpingai-lite.Q4_0.gguf +3 -0
- helpingai-lite.Q4_1.gguf +3 -0
- helpingai-lite.Q4_K_M.gguf +3 -0
- helpingai-lite.Q4_K_S.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,11 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
helpingai-lite.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
helpingai-lite.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
helpingai-lite.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
helpingai-lite.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
helpingai-lite.Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
helpingai-lite.Q4_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
helpingai-lite.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
helpingai-lite.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
helpingai-lite.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f80069297d28c6bf1974333e22a116213615a881b93a6ea88f07b80427995e0c
|
| 3 |
+
size 432131008
|
helpingai-lite.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f39cdd4dd985cd4577f2da1e188c5199a094727d0e99d10c394c5d22f81a3152
|
| 3 |
+
size 591526848
|
helpingai-lite.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c47ccffcd617027bbb8023e64f9f602568afbf665495f76263b31767271d8aec
|
| 3 |
+
size 548404160
|
helpingai-lite.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7077e6a7a1a82a01221894a9482a886fd53d66bd5e9464f283948fdc1c710b72
|
| 3 |
+
size 499342272
|
helpingai-lite.Q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:31dbc3c0dba8afbcda08246539bf6cff7778114ef4726a1f9d1da885b6432053
|
| 3 |
+
size 636726208
|
helpingai-lite.Q4_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b42e786cd3507f6f671821406ca7ed08f7a507c3726f0d131d78a9fd62a6ef10
|
| 3 |
+
size 701377472
|
helpingai-lite.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:70ca83326abf94acb242c59925297a635c61d8bc934efe70d970f9932d652595
|
| 3 |
+
size 667814848
|
helpingai-lite.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:90278287075ff73f528339706786d9ac66d117a9d3adc211ce1a8b1adc00b44e
|
| 3 |
+
size 639871936
|