Text Generation
Transformers
GGUF
English
qwen
qwen3
lora
home-assistant
home-automation
smart-home
iot
instruction-tuned
tool-use
ollama
conversational
Instructions to use selorahomes/Selora-AI with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use selorahomes/Selora-AI with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="selorahomes/Selora-AI") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("selorahomes/Selora-AI", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use selorahomes/Selora-AI 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 selorahomes/Selora-AI:Q6_K # Run inference directly in the terminal: llama cli -hf selorahomes/Selora-AI:Q6_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf selorahomes/Selora-AI:Q6_K # Run inference directly in the terminal: llama cli -hf selorahomes/Selora-AI:Q6_K
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 selorahomes/Selora-AI:Q6_K # Run inference directly in the terminal: ./llama-cli -hf selorahomes/Selora-AI:Q6_K
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 selorahomes/Selora-AI:Q6_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf selorahomes/Selora-AI:Q6_K
Use Docker
docker model run hf.co/selorahomes/Selora-AI:Q6_K
- LM Studio
- Jan
- vLLM
How to use selorahomes/Selora-AI with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "selorahomes/Selora-AI" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "selorahomes/Selora-AI", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/selorahomes/Selora-AI:Q6_K
- SGLang
How to use selorahomes/Selora-AI with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "selorahomes/Selora-AI" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "selorahomes/Selora-AI", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "selorahomes/Selora-AI" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "selorahomes/Selora-AI", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use selorahomes/Selora-AI with Ollama:
ollama run hf.co/selorahomes/Selora-AI:Q6_K
- Unsloth Desktop
- Pi
How to use selorahomes/Selora-AI with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf selorahomes/Selora-AI:Q6_K
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": "selorahomes/Selora-AI:Q6_K" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use selorahomes/Selora-AI with Docker Model Runner:
docker model run hf.co/selorahomes/Selora-AI:Q6_K
- Lemonade
How to use selorahomes/Selora-AI with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull selorahomes/Selora-AI:Q6_K
Run and chat with the model
lemonade run user.Selora-AI-Q6_K
List all available models
lemonade list
- Hermes Agent
How to use selorahomes/Selora-AI with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf selorahomes/Selora-AI:Q6_K
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 selorahomes/Selora-AI:Q6_K
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use selorahomes/Selora-AI with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf selorahomes/Selora-AI:Q6_K
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 "selorahomes/Selora-AI:Q6_K" \ --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"
| { | |
| "name": "selora-ai-local", | |
| "version": "0.4.8", | |
| "description": "Selora AI v0.4.8 \u2014 Qwen3-1.7B Q6_K base + 5 LoRA specialists with slim action-then-confirm output schemas. Adds a utilities specialist (slot 4) alongside command, automation, answer, and clarification. Multi-state entity context (per-entity attribute tails in AVAILABLE ENTITIES) for richer single-turn grounding. Inference: cache_prompt enabled to amortize system-prompt KV cache across requests.", | |
| "base_model": { | |
| "id": "Qwen/Qwen3-1.7B", | |
| "format": "gguf", | |
| "dtype": "Q6_K", | |
| "filename": "qwen3_17b_base.Q6_K.gguf", | |
| "size_bytes": 1673006880, | |
| "sha256": "a00bbdb411872149d73e1a0683b9b8a9f13cf74f98ba70ff8e8e430d9a093179" | |
| }, | |
| "loras": [ | |
| { | |
| "slot": 0, | |
| "name": "command", | |
| "filename": "selora-command.f16.gguf", | |
| "size_bytes": 19938528, | |
| "sha256": "de8871f56d04cdfb0caf634e843f5d1ce9d7eead3b76ccd68b9813499035eba1" | |
| }, | |
| { | |
| "slot": 1, | |
| "name": "automation", | |
| "filename": "selora-automation.f16.gguf", | |
| "size_bytes": 37374880, | |
| "sha256": "e6d8b3b9cd7dc05b3de017cb43915586f15bca797985b50eb112ba585e2e25c9" | |
| }, | |
| { | |
| "slot": 2, | |
| "name": "answer", | |
| "filename": "selora-answer.f16.gguf", | |
| "size_bytes": 14957792, | |
| "sha256": "ab3342bb35c1c97d995121b3548eb8c8406a975d293c9f5ea4cdc5974fdd16a4" | |
| }, | |
| { | |
| "slot": 3, | |
| "name": "clarification", | |
| "filename": "selora-clarification.f16.gguf", | |
| "size_bytes": 9977056, | |
| "sha256": "16d2a2f852ca6b4e73f03caa235a52dcd49804c8a3acae5420914dc7a878d610" | |
| }, | |
| { | |
| "slot": 4, | |
| "name": "utilities", | |
| "filename": "selora-utilities.f16.gguf", | |
| "size_bytes": 19938528, | |
| "sha256": "d1e47028cbc3ad81252853bc363921764456d50a1329d41e4ded3f2b7a9b3af9" | |
| } | |
| ], | |
| "system_prompts": { | |
| "command": { | |
| "filename": "command_system_prompt.txt", | |
| "size_bytes": 1071, | |
| "sha256": "9921c6fef09c6ebad4a2ed4fad1dbe7e76efe0bfe4e532bf7c7fe096864de6a4" | |
| }, | |
| "automation": { | |
| "filename": "automation_system_prompt.txt", | |
| "size_bytes": 2711, | |
| "sha256": "04e2d8231e91d00afba0c50964a0647b036303bd4c4dbc9e7c58dd3434d2b682" | |
| }, | |
| "answer": { | |
| "filename": "answer_system_prompt.txt", | |
| "size_bytes": 856, | |
| "sha256": "ec4c2dfb6bcd378e65f891a15d9066d9f0c295a1ac3fc9dbc01cb01a9c0d6cb2" | |
| }, | |
| "clarification": { | |
| "filename": "clarification_system_prompt.txt", | |
| "size_bytes": 683, | |
| "sha256": "c6833a17147574946a7176447a88d65e687bc393e62db1aaa89c57d1fdf9a3ac" | |
| }, | |
| "utilities": { | |
| "filename": "utilities_system_prompt.txt", | |
| "size_bytes": 1588, | |
| "sha256": "ae1155b644b529ba63d9441b2abc347fd6f4e4b3d4bbb25b323509707df90d36" | |
| } | |
| }, | |
| "runtime": { | |
| "cache_prompt": true, | |
| "ctx_size": 4096 | |
| }, | |
| "training": { | |
| "framework": "mlx-lm", | |
| "base_model_repo": "Qwen/Qwen3-1.7B", | |
| "optimizer": "adam", | |
| "learning_rate": 0.0001, | |
| "batch_size": 4, | |
| "max_seq_length": 4096, | |
| "english_only": true, | |
| "data_source": "synthetic \u2014 slim schemas in slim_schemas.md, generated by scripts/gen_{intent}.py from 10 curated home specs + procedural variants; service_matrix.py covers 49 (domain, service) pairs. tools.home_specs.diversify_states() injects multi-state attributes per training example.", | |
| "iterations_per_specialist": { | |
| "command": 750, | |
| "answer": 600, | |
| "clarification": 450, | |
| "automation": 1050, | |
| "utilities": 600 | |
| }, | |
| "examples_per_specialist": { | |
| "command": 8800, | |
| "answer": 6600, | |
| "clarification": 3300, | |
| "automation": 6600, | |
| "utilities": 6600 | |
| } | |
| } | |
| } | |