Home Services (HVAC · Plumbing · Electrical)
Triages service calls, schedules techs, and quotes jobs for the trades.
- Base model
- Qwen3.6-35B-A3B
- License
- Apache-2.0
- Version
- v1.0
Run it locally
Free · open weightsApache-2.0 weights on your own box. Your data never leaves the machine, and a lapsed plan never bricks a local model.
Hugging Face
shell
huggingface-cli download flywheel-ai/home-services # serve OpenAI-compatible with vLLM: vllm serve flywheel-ai/home-services --served-model-name home-services
Use the hosted API
OpenAI-compatibleDon’t want to run hardware? Point any OpenAI SDK at Flywheel — change one line (the base_url) and use a fw_live_ key.
curl https://gyld.dev/api/v1/chat/completions \
-H "Authorization: Bearer $FLYWHEEL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "home-services",
"messages": [
{ "role": "user", "content": "Triage a no-cooling AC service call over the phone." }
]
}'from openai import OpenAI
client = OpenAI(
base_url="https://gyld.dev/api/v1", # the one line you change
api_key="fw_live_...", # mint on the Account page
)
resp = client.chat.completions.create(
model="home-services",
messages=[{"role": "user", "content": "Triage a no-cooling AC service call over the phone."}],
)
print(resp.choices[0].message.content)import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://gyld.dev/api/v1", // the one line you change
apiKey: "fw_live_...", // mint on the Account page
});
const resp = await client.chat.completions.create({
model: "home-services",
messages: [{ role: "user", content: "Triage a no-cooling AC service call over the phone." }],
});
console.log(resp.choices[0].message.content);Builds & sizes
| Format | Size | Best for |
|---|---|---|
| Q4_K_M GGUF | 20GB | Laptops / Ollama / llama.cpp |
| bf16 safetensors | ~65GB | GPU serving (vLLM, TGI) & fine-tuning |
Limitations
Output is decision support, not professional advice. Verify anything consequential with a licensed professional in your field.