Instructions to use Maxilicious20/Aether-2.5-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 Maxilicious20/Aether-2.5-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 Maxilicious20/Aether-2.5-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf Maxilicious20/Aether-2.5-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 Maxilicious20/Aether-2.5-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf Maxilicious20/Aether-2.5-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 Maxilicious20/Aether-2.5-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Maxilicious20/Aether-2.5-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 Maxilicious20/Aether-2.5-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Maxilicious20/Aether-2.5-GGUF:Q4_K_M
Use Docker
docker model run hf.co/Maxilicious20/Aether-2.5-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use Maxilicious20/Aether-2.5-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Maxilicious20/Aether-2.5-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": "Maxilicious20/Aether-2.5-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Maxilicious20/Aether-2.5-GGUF:Q4_K_M
- Ollama
How to use Maxilicious20/Aether-2.5-GGUF with Ollama:
ollama run hf.co/Maxilicious20/Aether-2.5-GGUF:Q4_K_M
- Unsloth Studio
How to use Maxilicious20/Aether-2.5-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 Maxilicious20/Aether-2.5-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 Maxilicious20/Aether-2.5-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Maxilicious20/Aether-2.5-GGUF to start chatting
- Pi
How to use Maxilicious20/Aether-2.5-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Maxilicious20/Aether-2.5-GGUF: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": "Maxilicious20/Aether-2.5-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use Maxilicious20/Aether-2.5-GGUF with Docker Model Runner:
docker model run hf.co/Maxilicious20/Aether-2.5-GGUF:Q4_K_M
- Lemonade
How to use Maxilicious20/Aether-2.5-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Maxilicious20/Aether-2.5-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Aether-2.5-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use Maxilicious20/Aether-2.5-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Maxilicious20/Aether-2.5-GGUF: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 Maxilicious20/Aether-2.5-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use Maxilicious20/Aether-2.5-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Maxilicious20/Aether-2.5-GGUF: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 "Maxilicious20/Aether-2.5-GGUF: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
|
@@ -1,35 +1,53 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
- en
|
| 4 |
-
license: apache-2.0
|
| 5 |
-
base_model: Maxilicious20/Aether-2.5
|
| 6 |
tags:
|
| 7 |
- gguf
|
| 8 |
-
- llama
|
| 9 |
-
-
|
| 10 |
- aether
|
| 11 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
---
|
| 13 |
|
| 14 |
-
#
|
|
|
|
|
|
|
| 15 |
|
| 16 |
-
|
| 17 |
|
| 18 |
-
> π **
|
|
|
|
|
|
|
| 19 |
|
| 20 |
---
|
| 21 |
|
| 22 |
-
##
|
| 23 |
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
|
| 27 |
-
|
|
|
|
|
|
|
|
|
|
|
| 28 |
|
| 29 |
---
|
| 30 |
|
| 31 |
-
## π How to Run
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
|
| 33 |
-
###
|
|
|
|
| 34 |
```bash
|
| 35 |
-
./llama-cli -m Aether-2.5-3B-Q4_K_M.gguf -p "
|
|
|
|
| 1 |
---
|
| 2 |
+
library_name: gguf
|
|
|
|
|
|
|
|
|
|
| 3 |
tags:
|
| 4 |
- gguf
|
| 5 |
+
- llama.cpp
|
| 6 |
+
- lm-studio
|
| 7 |
- aether
|
| 8 |
+
- german
|
| 9 |
+
- english
|
| 10 |
+
- text-generation
|
| 11 |
+
license: apache-2.0
|
| 12 |
+
language:
|
| 13 |
+
- de
|
| 14 |
+
- en
|
| 15 |
+
base_model: Maxilicious20/Aether-2.5
|
| 16 |
---
|
| 17 |
|
| 18 |
+
# Aether 2.5 - GGUF
|
| 19 |
+
|
| 20 |
+
Pre-quantized GGUF binaries for **Aether 2.5**, scaling up to the powerful **Qwen2.5-3B-Instruct** base architecture.
|
| 21 |
|
| 22 |
+
Trained with SFT (Supervised Fine-Tuning) and PEFT (LoRA) on a custom 3 GB dataset using local NVIDIA RTX GPU acceleration, Aether 2.5 delivers high intelligence, robust conversational capabilities, and exceptional multilingual performance in German and English.
|
| 23 |
|
| 24 |
+
> π **Looking for the Base / LoRA Adapter?**
|
| 25 |
+
> If you want to use the Hugging Face Transformers PEFT adapter instead, check out the main repository:
|
| 26 |
+
> π **[Maxilicious20/Aether-2.5](https://huggingface.co/Maxilicious20/Aether-2.5)**
|
| 27 |
|
| 28 |
---
|
| 29 |
|
| 30 |
+
## π¦ Available Files & Quantizations
|
| 31 |
|
| 32 |
+
Choose the right file depending on your system's VRAM/RAM and performance needs:
|
| 33 |
+
|
| 34 |
+
| Filename | Quantization | Quality | Size | Description / Recommendation |
|
| 35 |
+
| :--- | :--- | :--- | :--- | :--- |
|
| 36 |
+
| `aether_2_5_fp16.gguf` | FP16 / F16 | Maximum | ~5.75 GB | Uncompressed full precision. Best quality, requires more VRAM. |
|
| 37 |
+
| `Aether-2.5-3B-Q8_0.gguf` | Q8_0 | Very High | ~3.05 GB | Near-lossless quantization. Excellent balance of precision and speed. |
|
| 38 |
+
| `Aether-2.5-3B-Q4_K_M.gguf` | Q4_K_M | Balanced | ~1.79 GB | **Recommended.** Best compromise between speed, size, and minimal quality loss. |
|
| 39 |
|
| 40 |
---
|
| 41 |
|
| 42 |
+
## π How to Run Locally
|
| 43 |
+
|
| 44 |
+
### 1. LM Studio
|
| 45 |
+
1. Open LM Studio.
|
| 46 |
+
2. Search for `Maxilicious20/Aether-2.5-GGUF` or paste the repo ID.
|
| 47 |
+
3. Download your preferred quantization (e.g., `Aether-2.5-3B-Q4_K_M.gguf`).
|
| 48 |
+
4. Load the model and start chatting!
|
| 49 |
|
| 50 |
+
### 2. Ollama / llama.cpp
|
| 51 |
+
You can run the GGUF file directly using `llama.cpp`:
|
| 52 |
```bash
|
| 53 |
+
./llama-cli -m Aether-2.5-3B-Q4_K_M.gguf -p "Hello Aether!" -n 256
|