GGUF
Chinese
English
spark-x2.5
llama.cpp
speculative-decoding
t4
cuda
colab
edge-deployment
conversational
Instructions to use gasschina/Spark-X2.5-4B-build-cpp 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 gasschina/Spark-X2.5-4B-build-cpp 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 gasschina/Spark-X2.5-4B-build-cpp:Q8_0 # Run inference directly in the terminal: llama cli -hf gasschina/Spark-X2.5-4B-build-cpp:Q8_0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf gasschina/Spark-X2.5-4B-build-cpp:Q8_0 # Run inference directly in the terminal: llama cli -hf gasschina/Spark-X2.5-4B-build-cpp: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 gasschina/Spark-X2.5-4B-build-cpp:Q8_0 # Run inference directly in the terminal: ./llama-cli -hf gasschina/Spark-X2.5-4B-build-cpp: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 gasschina/Spark-X2.5-4B-build-cpp:Q8_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf gasschina/Spark-X2.5-4B-build-cpp:Q8_0
Use Docker
docker model run hf.co/gasschina/Spark-X2.5-4B-build-cpp:Q8_0
- LM Studio
- Jan
- Ollama
How to use gasschina/Spark-X2.5-4B-build-cpp with Ollama:
ollama run hf.co/gasschina/Spark-X2.5-4B-build-cpp:Q8_0
- Unsloth Desktop
- Pi
How to use gasschina/Spark-X2.5-4B-build-cpp with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf gasschina/Spark-X2.5-4B-build-cpp:Q8_0
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": "gasschina/Spark-X2.5-4B-build-cpp:Q8_0" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use gasschina/Spark-X2.5-4B-build-cpp with Docker Model Runner:
docker model run hf.co/gasschina/Spark-X2.5-4B-build-cpp:Q8_0
- Lemonade
How to use gasschina/Spark-X2.5-4B-build-cpp with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull gasschina/Spark-X2.5-4B-build-cpp:Q8_0
Run and chat with the model
lemonade run user.Spark-X2.5-4B-build-cpp-Q8_0
List all available models
lemonade list
- Hermes Agent
How to use gasschina/Spark-X2.5-4B-build-cpp with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf gasschina/Spark-X2.5-4B-build-cpp:Q8_0
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 gasschina/Spark-X2.5-4B-build-cpp:Q8_0
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use gasschina/Spark-X2.5-4B-build-cpp with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf gasschina/Spark-X2.5-4B-build-cpp:Q8_0
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 "gasschina/Spark-X2.5-4B-build-cpp:Q8_0" \ --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"
| # ============================================================================ | |
| # tunnel_api.sh — 为 Spark API (默认8080) 开 aitun.cc 公网隧道 | |
| # 位置: /content/drive/MyDrive/spark-t4/tunnel_api.sh | |
| # | |
| # 原理: 直接运行 aitun-client 二进制,并用独立的 HOME (= /root/.aitun-api) | |
| # 注册,完全不触碰现有 Flask 桥接隧道的 /root/.aitun 配置, | |
| # 两隧道互不影响。免费模式自动分配隧道码和公网 URL。 | |
| # | |
| # 用法: | |
| # bash tunnel_api.sh start # 开隧道并打印公网 URL(约10~20秒) | |
| # bash tunnel_api.sh status | |
| # bash tunnel_api.sh stop | |
| # 自定义: PORT=8080 bash tunnel_api.sh start | |
| # ============================================================================ | |
| set -euo pipefail | |
| PORT="${PORT:-8080}" | |
| CLIENT_BIN="/usr/local/lib/python3.13/dist-packages/aitun/bin/aitun-client-linux-amd64" | |
| API_HOME="/root/.aitun-api" # 独立配置目录,保护桥接隧道 | |
| LOG_FILE="/content/aitun-api-tunnel.log" | |
| PID_FILE="/content/aitun-api-tunnel.pid" | |
| GREEN='\033[0;32m'; YELLOW='\033[1;33m'; RED='\033[0;31m'; CYAN='\033[0;36m'; NC='\033[0m' | |
| info() { echo -e "${GREEN}[隧道]${NC} $*"; } | |
| fail() { echo -e "${RED}[隧道]${NC} $*"; exit 1; } | |
| [[ -x "$CLIENT_BIN" ]] || fail "未找到 aitun 客户端: $CLIENT_BIN (本机需已安装 aitun)" | |
| extract_url() { | |
| grep -oE "https://aitun\.cc/[A-Za-z0-9]+" "$LOG_FILE" 2>/dev/null | tail -1 | |
| } | |
| do_start() { | |
| do_stop 2>/dev/null || true | |
| mkdir -p "$API_HOME" | |
| info "启动隧道 (本地 :$PORT → 公网)..." | |
| HOME="$API_HOME" nohup "$CLIENT_BIN" -s aitun.cc:6639 -p "$PORT" \ | |
| > "$LOG_FILE" 2>&1 & | |
| echo $! > "$PID_FILE" | |
| for i in $(seq 1 12); do | |
| sleep 5 | |
| URL="$(extract_url)" | |
| if [[ -n "$URL" ]]; then | |
| kill -0 "$(cat "$PID_FILE")" 2>/dev/null || fail "隧道进程退出,日志: $(tail -10 "$LOG_FILE")" | |
| info "隧道已建立!" | |
| echo -e "${CYAN}──────────────────────────────────────────────────${NC}" | |
| echo -e " 公网 API: $URL/v1/chat/completions" | |
| echo -e " 健康检查: $URL/health" | |
| echo -e " 模型列表: $URL/v1/models" | |
| if [[ -s "/content/drive/MyDrive/spark-t4/.api_key" ]]; then | |
| echo -e " API Key: $(cat /content/drive/MyDrive/spark-t4/.api_key)" | |
| echo -e " 调用时带: Authorization: Bearer <API Key>" | |
| fi | |
| echo -e "${CYAN}──────────────────────────────────────────────────${NC}" | |
| echo -e " curl 示例:" | |
| echo -e " curl -N $URL/v1/chat/completions \\" | |
| echo -e " -H 'Content-Type: application/json' \\" | |
| if [[ -s "/content/drive/MyDrive/spark-t4/.api_key" ]]; then | |
| echo -e " -H \"Authorization: Bearer \$(cat /content/drive/MyDrive/spark-t4/.api_key)\" \\" | |
| fi | |
| echo -e " -d '{\"messages\":[{\"role\":\"user\",\"content\":\"你好\"}],\"stream\":true}'" | |
| return 0 | |
| fi | |
| done | |
| fail "60 秒未取得公网 URL,日志: $(tail -15 "$LOG_FILE")" | |
| } | |
| do_stop() { | |
| if [[ -f "$PID_FILE" ]] && kill -0 "$(cat "$PID_FILE")" 2>/dev/null; then | |
| kill "$(cat "$PID_FILE")" && info "隧道已停止 (PID $(cat "$PID_FILE"))" | |
| fi | |
| rm -f "$PID_FILE" | |
| } | |
| do_status() { | |
| URL="$(extract_url)" | |
| if [[ -f "$PID_FILE" ]] && kill -0 "$(cat "$PID_FILE")" 2>/dev/null; then | |
| info "隧道运行中 (PID $(cat "$PID_FILE")) URL: ${URL:-未知}" | |
| else | |
| echo "隧道未运行" | |
| fi | |
| } | |
| case "${1:-help}" in | |
| start) do_start ;; | |
| stop) do_stop ;; | |
| status) do_status ;; | |
| *) grep '^# ' "$0" | sed 's/^# //' ;; | |
| esac | |