Instructions to use Jershone/Echo-1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use Jershone/Echo-1 with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="Jershone/Echo-1", filename="Echo-1.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use Jershone/Echo-1 with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf Jershone/Echo-1 # Run inference directly in the terminal: llama-cli -hf Jershone/Echo-1
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf Jershone/Echo-1 # Run inference directly in the terminal: llama-cli -hf Jershone/Echo-1
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 Jershone/Echo-1 # Run inference directly in the terminal: ./llama-cli -hf Jershone/Echo-1
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 Jershone/Echo-1 # Run inference directly in the terminal: ./build/bin/llama-cli -hf Jershone/Echo-1
Use Docker
docker model run hf.co/Jershone/Echo-1
- LM Studio
- Jan
- vLLM
How to use Jershone/Echo-1 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Jershone/Echo-1" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Jershone/Echo-1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Jershone/Echo-1
- Ollama
How to use Jershone/Echo-1 with Ollama:
ollama run hf.co/Jershone/Echo-1
- Unsloth Studio new
How to use Jershone/Echo-1 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 Jershone/Echo-1 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 Jershone/Echo-1 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Jershone/Echo-1 to start chatting
- Pi new
How to use Jershone/Echo-1 with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf Jershone/Echo-1
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "Jershone/Echo-1" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use Jershone/Echo-1 with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf Jershone/Echo-1
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 Jershone/Echo-1
Run Hermes
hermes
- Docker Model Runner
How to use Jershone/Echo-1 with Docker Model Runner:
docker model run hf.co/Jershone/Echo-1
- Lemonade
How to use Jershone/Echo-1 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Jershone/Echo-1
Run and chat with the model
lemonade run user.Echo-1-{{QUANT_TAG}}List all available models
lemonade list
llm.create_chat_completion(
messages = [
{
"role": "user",
"content": "What is the capital of France?"
}
]
)🚀 Echo-1 (0.5B Parameters - GGUF)
Echo-1 is an edge-optimized 0.5B parameter model based on the robust Qwen-2.5-Instruct architecture. Fine-tuned via LoRA and fully merged into a single, high-performance GGUF binary, this model balances lightning-fast local inference speeds with advanced structural reasoning and context tracking.
✨ Key Features
- Qwen-2.5 Foundation: Inherits deep tokenization efficiency, vastly improved instruction following, and stable textual coherence from the base architecture.
- Merged Standalone Build: Zero dependencies on external adapter weights, multi-layer configs, or Python runtimes—loadable instantly in any standard GGUF engine (
llama.cpp,node-llama-cpp,Ollama). - Ultra-Low Memory Footprint: Extremely lightweight structure makes it ideal for local-first computing environments, private automated utilities, and background processes on low-spec consumer systems.
🧠 Prompt Structure (ChatML Syntax)
Because Echo-1 is fine-tuned on top of Qwen-2.5-Instruct, it utilizes standard ChatML template markers. For precise structural alignment and to prevent response cutoff, construct your inputs exactly like this:
<|im_start|>system
You are Echo-1, a helpful assistant.<|im_end|>
<|im_start|>user
Write a short paragraph explaining the benefits of local-first AI.<|im_end|>
<|im_start|>assistant
💻 Sample Implementation (Node.js)
You can spin this model up locally using node-llama-cpp. Ensure you append the raw ChatML structural sequences directly to your execution queries:
import {LlamaModel, LlamaContext, LlamaSequence} from "node-llama-cpp";
import path from "path";
const model = new LlamaModel({
modelPath: path.join(__dirname, "echo-1-0.5b.gguf")
});
const context = new LlamaContext({model});
const sequence = new LlamaSequence({context});
const prompt = `<|im_start|>system\nYou are Echo-1.<|im_end|>\n<|im_start|>user\nWhat is 15 + 27?<|im_end|>\n<|im_start|>assistant\n`;
const tokens = model.tokenize(prompt);
console.log("Echo-1 response:");
const response = await sequence.evaluate(tokens);
console.log(model.detokenize(response));
📄 License
This model's merged weights are distributed under the Apache 2.0 License, strictly adhering to the foundational terms and commercial/private usage permissions granted by the original Qwen team.
- Downloads last month
- 114
We're not able to determine the quantization variants.
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="Jershone/Echo-1", filename="Echo-1.gguf", )