Text Generation
GGUF
English
text-generation-inference
code
Hitesh_V_Founder
https://chat.hyze.dev
llama-cpp
gguf-my-repo
Instructions to use HyzeAI/HyzeMini-Q8_0-GGUF 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 HyzeAI/HyzeMini-Q8_0-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 HyzeAI/HyzeMini-Q8_0-GGUF:Q8_0 # Run inference directly in the terminal: llama cli -hf HyzeAI/HyzeMini-Q8_0-GGUF:Q8_0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf HyzeAI/HyzeMini-Q8_0-GGUF:Q8_0 # Run inference directly in the terminal: llama cli -hf HyzeAI/HyzeMini-Q8_0-GGUF:Q8_0
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 HyzeAI/HyzeMini-Q8_0-GGUF:Q8_0 # Run inference directly in the terminal: ./llama-cli -hf HyzeAI/HyzeMini-Q8_0-GGUF:Q8_0
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 HyzeAI/HyzeMini-Q8_0-GGUF:Q8_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf HyzeAI/HyzeMini-Q8_0-GGUF:Q8_0
Use Docker
docker model run hf.co/HyzeAI/HyzeMini-Q8_0-GGUF:Q8_0
- LM Studio
- Jan
- vLLM
How to use HyzeAI/HyzeMini-Q8_0-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "HyzeAI/HyzeMini-Q8_0-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "HyzeAI/HyzeMini-Q8_0-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/HyzeAI/HyzeMini-Q8_0-GGUF:Q8_0
- Ollama
How to use HyzeAI/HyzeMini-Q8_0-GGUF with Ollama:
ollama run hf.co/HyzeAI/HyzeMini-Q8_0-GGUF:Q8_0
- Unsloth Desktop
- Docker Model Runner
How to use HyzeAI/HyzeMini-Q8_0-GGUF with Docker Model Runner:
docker model run hf.co/HyzeAI/HyzeMini-Q8_0-GGUF:Q8_0
- Lemonade
How to use HyzeAI/HyzeMini-Q8_0-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull HyzeAI/HyzeMini-Q8_0-GGUF:Q8_0
Run and chat with the model
lemonade run user.HyzeMini-Q8_0-GGUF-Q8_0
List all available models
lemonade list
- Atomic Chat
Update README.md
Browse files
README.md
CHANGED
|
@@ -12,10 +12,21 @@ tags:
|
|
| 12 |
- gguf-my-repo
|
| 13 |
base_model: HyzeAI/HyzeMini
|
| 14 |
---
|
|
|
|
|
|
|
|
|
|
| 15 |
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
|
| 20 |
## Use with llama.cpp
|
| 21 |
Install llama.cpp through brew (works on Mac and Linux)
|
|
|
|
| 12 |
- gguf-my-repo
|
| 13 |
base_model: HyzeAI/HyzeMini
|
| 14 |
---
|
| 15 |
+
<p align="center">
|
| 16 |
+
<img src="https://i.imgur.com/ePJMLNp.png" alt="Hyze Logo" width="405"/>
|
| 17 |
+
</p>
|
| 18 |
|
| 19 |
+
<h1 align="center">HyzeMini</h1>
|
| 20 |
+
|
| 21 |
+
<p align="center">
|
| 22 |
+
A quantized lightweight text-generation model by <b>Hyze AI</b>
|
| 23 |
+
</p>
|
| 24 |
+
|
| 25 |
+
<p align="center">
|
| 26 |
+
🔗 <a href="https://chat.hyze.dev">Chat with all models</a> •
|
| 27 |
+
📘 <a href="https://academy.hyze.dev">HyzeAcademy</a> •
|
| 28 |
+
🧠 <a href="https://note.hyze.dev">HyzeNote (NotebookLM alternate)</a>
|
| 29 |
+
</p>
|
| 30 |
|
| 31 |
## Use with llama.cpp
|
| 32 |
Install llama.cpp through brew (works on Mac and Linux)
|