Restaurant & Hospitality
Takes reservations, answers menu and hours questions, and handles guest requests.
Friendly front-of-house and operations assistant for restaurants: reservations and waitlist, orders, menu and dish questions, hours and directions, catering and private events, and guest relations.
- 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
huggingface-cli download flywheel-ai/restaurant # serve OpenAI-compatible with vLLM: vllm serve flywheel-ai/restaurant --served-model-name restaurant
Use the hosted API
OpenAI-compatibleDon’t want to run hardware? Point any OpenAI SDK at Gyld — change one line (the base_url) and use a fw_live_ key.
curl https://gyld.dev/api/v1/chat/completions \
-H "Authorization: Bearer $GYLD_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "restaurant",
"messages": [
{ "role": "user", "content": "Write a server training checklist for a new hire." }
]
}'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="restaurant",
messages=[{"role": "user", "content": "Write a server training checklist for a new hire."}],
)
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: "restaurant",
messages: [{ role: "user", content: "Write a server training checklist for a new hire." }],
});
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
Guardrail: Never guarantees a dish is allergen-free and gives no medical advice; allergen questions defer to the kitchen's allergen protocol, and any reaction or suspected foodborne illness is pointed to medical help or 911.
Output is decision support, not professional advice. Verify anything consequential with a licensed professional in your field.