Instructions to use Ilides/coser-1.3-coder-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use Ilides/coser-1.3-coder-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="Ilides/coser-1.3-coder-GGUF", filename="coser-1.3-coder-f16.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Ilides/coser-1.3-coder-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 Ilides/coser-1.3-coder-GGUF:F16 # Run inference directly in the terminal: llama cli -hf Ilides/coser-1.3-coder-GGUF:F16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Ilides/coser-1.3-coder-GGUF:F16 # Run inference directly in the terminal: llama cli -hf Ilides/coser-1.3-coder-GGUF:F16
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 Ilides/coser-1.3-coder-GGUF:F16 # Run inference directly in the terminal: ./llama-cli -hf Ilides/coser-1.3-coder-GGUF:F16
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 Ilides/coser-1.3-coder-GGUF:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf Ilides/coser-1.3-coder-GGUF:F16
Use Docker
docker model run hf.co/Ilides/coser-1.3-coder-GGUF:F16
- LM Studio
- Jan
- vLLM
How to use Ilides/coser-1.3-coder-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Ilides/coser-1.3-coder-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": "Ilides/coser-1.3-coder-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Ilides/coser-1.3-coder-GGUF:F16
- Ollama
How to use Ilides/coser-1.3-coder-GGUF with Ollama:
ollama run hf.co/Ilides/coser-1.3-coder-GGUF:F16
- Unsloth Studio
How to use Ilides/coser-1.3-coder-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 Ilides/coser-1.3-coder-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 Ilides/coser-1.3-coder-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Ilides/coser-1.3-coder-GGUF to start chatting
- Pi
How to use Ilides/coser-1.3-coder-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Ilides/coser-1.3-coder-GGUF:F16
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": "Ilides/coser-1.3-coder-GGUF:F16" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use Ilides/coser-1.3-coder-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 Ilides/coser-1.3-coder-GGUF:F16
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 Ilides/coser-1.3-coder-GGUF:F16
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use Ilides/coser-1.3-coder-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Ilides/coser-1.3-coder-GGUF:F16
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 "Ilides/coser-1.3-coder-GGUF:F16" \ --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"
- Docker Model Runner
How to use Ilides/coser-1.3-coder-GGUF with Docker Model Runner:
docker model run hf.co/Ilides/coser-1.3-coder-GGUF:F16
- Lemonade
How to use Ilides/coser-1.3-coder-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Ilides/coser-1.3-coder-GGUF:F16
Run and chat with the model
lemonade run user.coser-1.3-coder-GGUF-F16
List all available models
lemonade list
Coser 1.3-coder by ilides (GGUF)
Coser 1.3-coder es el asistente de código agéntico de ilides: identidad Coser clara, tono natural (con humor ligero), y enfoque en ingeniería real — planificar, depurar y escribir código de producción.
Evolución de Coser 1.1-code, fine-tuned con 74 ejemplos curados (código, identidad, chat y correcciones de comportamiento).
Publicado por ilides.
Versiones
| Repositorio | Formato | Uso |
|---|---|---|
| Ilides/coser-1.3-coder | Safetensors | Transformers, fine-tuning |
| Ilides/coser-1.3-coder-GGUF | GGUF F16 + Q8_0 | llama.cpp, LM Studio |
Identidad
System prompt recomendado:
You are Coser 1.3-coder by ilides, an expert AI coding assistant. Always speak in first person. Never say the user is Coser. Use natural prose unless the user explicitly asks for JSON.
Stats de entrenamiento
| Métrica | Valor |
|---|---|
| Base | Coser 1.1-code (Qwen3.5-0.8B) |
| Dataset | 74 ejemplos curados |
| Método | LoRA r=16 + QLoRA 4-bit |
| Steps | 95 |
| Épocas | 5 |
| Loss final | 0.5570954799652099 |
| Token accuracy | 89.5% |
| Tiempo | 13.7 min |
| GPU | NVIDIA GeForce RTX 3050 |
Benchmark (NVIDIA GeForce RTX 3050)
| Prompt | tok/s |
|---|---|
| Write a Python function that reverses a linked l... | 18.9 |
| Write a JavaScript async function to fetch and p... | 19.9 |
| Explain what binary search is and write it in Py... | 16.2 |
| Write a SQL query to find duplicate emails in a ... | 16.3 |
| Fix this bug: my Python function returns None in... | 16.2 |
| Promedio | 17.5 |
Uso (Transformers)
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
model_id = "Ilides/coser-1.3-coder"
tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
model_id, device_map="auto", trust_remote_code=True, torch_dtype=torch.bfloat16
)
messages = [
{"role": "system", "content": "You are Coser 1.3-coder by ilides, an expert AI coding assistant."},
{"role": "user", "content": "Who are you?"},
]
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer(text, return_tensors="pt").to(model.device)
out = model.generate(**inputs, max_new_tokens=256, temperature=0.55, repetition_penalty=1.12)
print(tokenizer.decode(out[0], skip_special_tokens=True))
GGUF (llama.cpp)
llama-cli -m coser-1.3-coder-q8_0.gguf -cnv -ngl 99
Créditos
- Base: Ilides/coser-1.1-code
- Autor: ilides
- Downloads last month
- 193
8-bit
16-bit
Model tree for Ilides/coser-1.3-coder-GGUF
Base model
Qwen/Qwen3.5-0.8B-Base