Instructions to use RigorVzla/AIRH_MAX_V1_CORE with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use RigorVzla/AIRH_MAX_V1_CORE with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="RigorVzla/AIRH_MAX_V1_CORE", filename="AIRH_MAX_V1_CORE-Q4_K_M.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 RigorVzla/AIRH_MAX_V1_CORE 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 RigorVzla/AIRH_MAX_V1_CORE:Q4_K_M # Run inference directly in the terminal: llama cli -hf RigorVzla/AIRH_MAX_V1_CORE:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf RigorVzla/AIRH_MAX_V1_CORE:Q4_K_M # Run inference directly in the terminal: llama cli -hf RigorVzla/AIRH_MAX_V1_CORE: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 RigorVzla/AIRH_MAX_V1_CORE:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf RigorVzla/AIRH_MAX_V1_CORE: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 RigorVzla/AIRH_MAX_V1_CORE:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf RigorVzla/AIRH_MAX_V1_CORE:Q4_K_M
Use Docker
docker model run hf.co/RigorVzla/AIRH_MAX_V1_CORE:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use RigorVzla/AIRH_MAX_V1_CORE with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "RigorVzla/AIRH_MAX_V1_CORE" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "RigorVzla/AIRH_MAX_V1_CORE", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/RigorVzla/AIRH_MAX_V1_CORE:Q4_K_M
- Ollama
How to use RigorVzla/AIRH_MAX_V1_CORE with Ollama:
ollama run hf.co/RigorVzla/AIRH_MAX_V1_CORE:Q4_K_M
- Unsloth Studio
How to use RigorVzla/AIRH_MAX_V1_CORE 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 RigorVzla/AIRH_MAX_V1_CORE 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 RigorVzla/AIRH_MAX_V1_CORE to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for RigorVzla/AIRH_MAX_V1_CORE to start chatting
- Pi
How to use RigorVzla/AIRH_MAX_V1_CORE with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf RigorVzla/AIRH_MAX_V1_CORE:Q4_K_M
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": "RigorVzla/AIRH_MAX_V1_CORE:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use RigorVzla/AIRH_MAX_V1_CORE with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf RigorVzla/AIRH_MAX_V1_CORE: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 RigorVzla/AIRH_MAX_V1_CORE:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use RigorVzla/AIRH_MAX_V1_CORE with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf RigorVzla/AIRH_MAX_V1_CORE: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 "RigorVzla/AIRH_MAX_V1_CORE: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"
- Docker Model Runner
How to use RigorVzla/AIRH_MAX_V1_CORE with Docker Model Runner:
docker model run hf.co/RigorVzla/AIRH_MAX_V1_CORE:Q4_K_M
- Lemonade
How to use RigorVzla/AIRH_MAX_V1_CORE with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull RigorVzla/AIRH_MAX_V1_CORE:Q4_K_M
Run and chat with the model
lemonade run user.AIRH_MAX_V1_CORE-Q4_K_M
List all available models
lemonade list
llm.create_chat_completion(
messages = [
{
"role": "user",
"content": "What is the capital of France?"
}
]
)AIRH_MAX_V1_CORE
馃専 Descripci贸n del modelo
AIRH_MAX_V1_CORE es el modelo principal (core) del asistente de voz AV-AIRH MAX. Est谩 basado en Qwen3 de 0.6B par谩metros y fine-tuneado espec铆ficamente para:
- Interpretar comandos de voz y convertirlos en acciones del sistema (abrir apps, buscar web, crear recordatorios, automatizaciones).
- Mantener una conversaci贸n natural, c谩lida y humana, siguiendo la filosof铆a de AIRH: no solo un robot.
- Pensar con l贸gica, priorizando tareas seg煤n el contexto de la conversaci贸n.
El formato GGUF permite que funcione totalmente offline, r谩pido incluso en CPU, siendo el cerebro de la versi贸n MAX del asistente.
馃幆 Uso previsto
Principal:
Ser el motor de generaci贸n de texto para AV-AIRH MAX (y compatible con Lite), recibiendo texto transcrito del usuario y devolviendo respuestas que luego se convierten a voz o se ejecutan como acciones.
Ejemplo de flujo:
- Usuario (voz): "Abre el calendario y dime qu茅 tengo a las 3"
- AIRH_MAX_V1_CORE genera:
"Claro, voy a abrir el calendario. Tienes una reuni贸n con el equipo a las 3 PM. 驴Necesitas recordatorio? [ACCION: abrir_calendario] [ACCION: recordatorio texto='Reuni贸n equipo' hora='15:00']" - El backend de AIRH parsea
[ACCION: ...]y ejecuta.
Respuestas t铆picas:
- Cortas y directas para comandos simples: "Listo, abriendo el navegador."
- Con empat铆a si hay error: "Uy, no pude encontrar esa aplicaci贸n. 驴Quieres que busque en la web?"
- Proactivas si el contexto lo permite: "Veo que tienes un recordatorio pendiente, 驴lo ejecuto ahora?"
No usar para:
- Conversaci贸n libre sin relaci贸n con productividad/escritorio.
- Generaci贸n de texto creativo o narrativo largo.
鈿欙笍 Entrenamiento y datos
| Aspecto | Detalle |
|---|---|
| Modelo base | Qwen/Qwen3-0.6B |
| Formato final | GGUF (cuantizaci贸n: Q4_K_M) |
| Tama帽o aprox. | ~380-420 MB |
| Dataset | Privado. Comandos de voz reales (an贸nimos) + di谩logos etiquetados con intenci贸n y argumentos en JSON. |
| Fine-tuning | SFT (Supervised Fine-Tuning) con 茅nfasis en extracci贸n de acciones. |
| Contexto m谩ximo | 5120 tokens |
馃И Evaluaci贸n (resultados internos)
| M茅trica | Resultado |
|---|---|
| Precisi贸n de intenci贸n (20 acciones comunes) | 94.2% |
| Extracci贸n correcta de argumentos | 91.7% |
| Respuestas fuera de dominio (debe rechazar) | 4.8% |
| Latencia media en CPU (i5, 16GB) | 0.29 segundos |
馃殌 Uso con llama.cpp
from llama_cpp import Llama
llm = Llama(
model_path="AIRH_MAX_V1_CORE.Q4_K_M.gguf",
n_ctx=5120,
n_threads=4,
temperature=0.1,
top_p=0.9,
verbose=False
)
prompt = """<|im_start|>system
Eres AIRH, el asistente virtual de escritorio por voz. Responde con frases cortas y c谩lidas. Si el usuario pide una acci贸n, a帽ade [ACCION: ...] al final.
<|im_end|>
<|im_start|>user
Reproduce m煤sica relajante
<|im_end|>
<|im_start|>assistant
"""
output = llm(prompt, max_tokens=256)
print(output["choices"][0]["text"])
馃摝 Formatos de acci贸n (para el backend)
El modelo genera etiquetas [ACCION: ...] que tu aplicaci贸n debe parsear. Ejemplos:
| Acci贸n | Formato en texto |
|---|---|
| Abrir app | [ACCION: abrir_app nombre="Spotify"] |
| Buscar web | [ACCION: buscar_web consulta="clima Madrid"] |
| Recordatorio | [ACCION: recordatorio texto="Reuni贸n" hora="17:00"] |
| Responder solo mensaje | (sin etiqueta, solo texto a voz) |
鈿狅笍 Limitaciones conocidas
- Solo espa帽ol (no entiende otros idiomas).
- No tiene conocimiento de actualidad (es un modelo est谩tico).
- Acciones complejas de varios pasos pueden requerir dos turnos de di谩logo.
- Depende del backend para ejecutar las acciones reales (seguridad implementada all铆).
馃敀 Privacidad y 茅tica
- 100% local: nunca env铆a datos del usuario a internet.
- El dataset de entrenamiento fue an贸nimo y con consentimiento.
- Las acciones peligrosas (borrar archivos, comandos de sistema) est谩n bloqueadas a nivel de backend, no del modelo.
馃摐 Licencia
Apache 2.0 (compatible con Qwen3).
Para integrar AIRH_MAX_V1_CORE en productos comerciales (como AV-AIRH MAX), consulta t茅rminos adicionales en av-airh.com.
馃懁 Autor / Mantenedor
[RigorVzla]
Web: https://av-airh.com
馃檹 Cr茅ditos
- Modelo base: Qwen3 de Alibaba Cloud
- Formato GGUF: llama.cpp
- Hosting y soporte: Nicalia Hosting
Model card actualizada: [03/06/2026]
Versi贸n del modelo: V1_CORE
- Downloads last month
- 1
4-bit
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="RigorVzla/AIRH_MAX_V1_CORE", filename="AIRH_MAX_V1_CORE-Q4_K_M.gguf", )