G.STANCUTA
Published · 2026 · 05 · 199 min read

An AI Concierge for Your Guests: 24/7 Answers in Every Language

  • ai
  • tourism
  • chatbot
  • hospitality

Your guests are asking the same ten questions at midnight. An AI assistant trained on your own information can answer them instantly, in German, Italian, English, and more — no extra staff required.

It is 23:40. A couple from the Netherlands just confirmed their booking at your apartment in Vinschgau. They immediately write: "What time is check-in? Where do we park? Is there a good restaurant nearby?" You are asleep. Your phone is on silent. They will wait until morning — and arrive slightly anxious. This scenario plays out dozens of times a week for hotels and private landlords across South Tyrol, and the fix is not a new staff member. It is an AI assistant that knows your property, speaks your guests' language, and is always on.

The Question Pile Nobody Talks About

Every host I have worked with in South Tyrol keeps a mental list of the questions they answer on repeat: check-in times, Wi-Fi password, parking instructions, breakfast hours, how to get to the Dolomites, which ski pass to buy, where to eat traditional Tyrolean food. These are not complicated questions. They are just constant. Each one takes two minutes to type on a phone, multiplied across dozens of guests arriving from different time zones. An AI assistant does not reduce the complexity of your hospitality — it handles the repetitive surface layer so you can focus on the moments that actually need a human.

Diagram of an AI assistant node connected to a knowledge-base document, with multilingual guest chat bubbles flowing out in German, Italian, and English
The assistant reads your knowledge base and answers in the guest's language.

What "Trained on Your Own Data" Actually Means

When people hear "AI assistant," they often picture something that makes things up confidently — and that fear is reasonable, because many off-the-shelf chatbots do exactly that. The setup I use is different. It is built around a knowledge base: a simple text file (or markdown document) that you write and maintain, containing exactly what you want the assistant to know. Check-in times, your Wi-Fi password, breakfast options, how to reach your place from Merano, local hiking and ski tips specific to your area of Val Venosta or the Dolomites.

The AI assistant is then configured to answer strictly from that document. If a guest asks something that is not in your knowledge base, the assistant says so and directs them to contact you directly. It does not invent prices. It does not guess availability. It does not hallucinate a restaurant that closed three years ago. You control what it knows because you wrote the source document — and updating it is as simple as editing a text file.

The Knowledge Base: Just a File You Edit

Here is what a typical knowledge base looks like for a small hotel or holiday apartment in South Tyrol. No database, no complicated admin panel. A markdown file with clearly labeled sections. You hand this to me once, I load it into the assistant, and the AI starts answering from it. When your breakfast hours change in winter, you edit one line in the file and the assistant knows.

md
# knowledge-base.md
# Pension Ortler — Guest Knowledge Base
# Edit this file to update what the AI assistant knows.
# The assistant will ONLY answer from what is written here.

## Check-in & Check-out

- Check-in: from 15:00 to 20:00. Late arrival (after 20:00) must be arranged in advance — call +39 0473 XXX XXX.
- Check-out: by 10:30. Luggage can be stored at reception until 14:00 on the day of departure.
- Early check-in from 12:00 is possible when rooms are available — ask at booking.

## Wi-Fi

- Network: Ortler_Guests | Password: ApfelStar2025
- Works throughout the building and on the terrace. Signal is strongest in the main house.
- If you have connection issues, restart your device. Still no luck? Call reception.

## Breakfast

- Served 07:30 – 10:00, in the Stube on the ground floor.
- South Tyrolean buffet: fresh Vinschger Paarl rye bread, local Speck, cheese from Merano market, apple strudel, fresh juices from Val Venosta apples.
- Gluten-free and lactose-free options available — please let us know at booking.
- Packed breakfast for early hikers available on request (order by 20:00 the evening before).

## Getting Here

- Address: Via Ortler 12, 39021 Laces / Latsch, Val Venosta / Vinschgau, South Tyrol (BZ), Italy.
- By car: A22 motorway, exit Merano Sud. Follow SS38 westward toward Silandro/Schlanders, then continue to Latsch. Approx. 40 min from Merano/Meran.
- By train + bus: Take the Vinschgau train (Meran to Mals) to Latsch station. We are 5 min walk from the station.
- Parking: Free private parking on site. EV charging point (Type 2, 11 kW) available — reserve in advance.

## Local Tips

- Stelvio / Stilfserjoch: One of the most iconic mountain passes in the Alps. Open roughly June–October. By car, the road from Prad (20 min from us) is spectacular. Hire road bikes locally.
- Ortler / Ortles: At 3,905 m the highest peak in the Eastern Alps. Guided tours available from June. Not for beginners.
- Ski: Haideralm (30 min) and Schöneben-Maseben (20 min) are the nearest ski resorts. Ski passes can be purchased online or at the lifts.
- Apple strudel: The Val Venosta/Vinschgau is Italy's main apple-growing valley. Try fresh strudel at Bäckerei Müller in the village.
- Merano / Meran: 40 min east. Art nouveau spa town — Terme Merano thermal baths, Tappeinerweg promenade, weekly market on Fridays.
- Dolomites day trip: Val Gardena / Gröden is about 1.5 h from us. Sassolungo and Sella group views are worth the drive.
- Restaurant recommendations: Gasthof Zum Hirschen (traditional, Latsch), Restaurant Ortlerhof (panoramic terrace), Vinothek W (wine bar, Naturns/Naturno, 20 min).

## Policies & FAQ

- Pets: Small dogs allowed (under 10 kg) with prior notice. Surcharge: 8 EUR/night.
- Smoking: Not permitted anywhere inside the building. Outdoor seating only.
- Children: Cots and high chairs available at no charge — request at booking.
- Late checkout: 13:00 is possible for 30 EUR, subject to availability.
- Payment: Cash, Visa, Mastercard. No Amex. No surcharge for cards.

The System Prompt: Rules the AI Follows

Alongside the knowledge base, the assistant receives a system prompt — a short instruction file that defines how it should behave. This is where you set the rules: only answer from the knowledge base, respond in the guest's language, escalate certain topics to a human, and never make up booking details. Below is a compact example of what that looks like in practice.

md
# system-prompt.txt
# Loaded into the AI assistant at every conversation start.

You are the guest assistant for Pension Ortler in Val Venosta, South Tyrol.
Your entire knowledge comes from the file "knowledge-base.md" provided below.

RULES:
1. Answer ONLY from the knowledge base. Do not invent facts, prices, availability, or policies.
2. Respond in the guest's language. If they write in German, reply in German. Italian → Italian. English → English. Other languages → English as fallback.
3. Be warm, concise, and practical. One paragraph per answer unless a list is clearer.
4. If the answer is not in the knowledge base, say exactly: "I don't have that information — please contact us directly at reception@pension-ortler.it or call +39 0473 XXX XXX."
5. NEVER make up room prices, availability, or booking confirmations. Always direct those questions to the human team.
6. For emergencies (medical, fire, safety), immediately provide the European emergency number 112 and ask the guest to call.
7. Do not store or repeat any personal data the guest mentions (name, room number, passport data).

HANDOFF TRIGGERS — escalate to human immediately if the guest:
- Wants to modify or cancel a booking
- Reports a problem in the room (broken heating, no hot water, etc.)
- Asks for exact pricing or special rates
- Is distressed, angry, or requires urgent help

---
[KNOWLEDGE BASE CONTENT FOLLOWS]
${knowledgeBase}

Multilingual Without Extra Effort

South Tyrol hosts guests from across Europe and beyond. German speakers from Bavaria and Austria, Italian families from Milan and Bologna, English-speaking tourists, Dutch cyclists, Eastern European visitors. Writing separate FAQ pages in four languages is work most small operators simply do not have time for. The AI assistant handles language automatically: it detects what language the guest is writing in and responds accordingly. Your knowledge base can be written entirely in German or Italian — the assistant translates on the fly. You write once, guests read in their own language.

Always-on AI assistant shown beside an alpine lodging icon, with a 24/7 indicator and night-time clock
Guests get instant answers at any hour — no front-desk staff needed at midnight.

Where It Lives: Website, WhatsApp, Booking Confirmation

The assistant is not limited to your website widget. I typically deploy it in two or three places at once. On your website as a small chat button — guests can ask questions before they even book. In a confirmation email as a link: "Before you arrive, you can ask any question here." And optionally as a WhatsApp integration, so guests who already communicate via WhatsApp can reach the assistant on a channel they are already using. Each of these entry points is connected to the same knowledge base, so answers are always consistent.

What It Does Not Do — and Why That Matters

Honest scope matters. The assistant is not a booking engine. It cannot check room availability, take payments, or modify existing reservations — those tasks stay with your booking system and your team. It will not try to guess prices or make commitments you have not authorized. When a guest wants to cancel or reports a broken radiator, the assistant hands off to you. The boundary is clear: information assistant, not autonomous agent.

  • Answers factual questions from your knowledge base around the clock.
  • Responds in German, Italian, English, and other languages automatically.
  • Captures inquiries that come in after hours — you see them when you wake up.
  • Does NOT make bookings, check availability, or handle payments.
  • Does NOT invent prices or policies not written in your knowledge base.
  • Immediately hands off emergencies and complaints to your human team.

What the Numbers Say

In 2025, the "südtirol privat" initiative — the digital platform for private landlords in South Tyrol — announced a digital concierge and AI-assisted telephony component rolling out from 2026. Separately, a Deloitte study from the same year found that 49 percent of hoteliers across Europe name AI integration as a primary initiative for 2026. The pattern is consistent: hospitality operators who have deployed AI assistants report a meaningful reduction in repetitive front-desk and messaging workload, and guests rate the instant-answer experience positively. The technology is not experimental. It is being deployed at scale now, and smaller properties that move early avoid the cost of being reactive later.

  1. 01Write your knowledge base — one document covering check-in, Wi-Fi, breakfast, local tips, and FAQ.
  2. 02I configure and deploy the assistant on your website and optionally on WhatsApp.
  3. 03You test it as a guest would, adjusting anything that needs refinement.
  4. 04Go live. Update the knowledge base yourself whenever anything changes.

The knowledge base is not a technical artifact. It is your property information, written down once, kept current. Everything else — the AI, the multilingual responses, the 24/7 availability — follows from that single document.

Is This for You?

If you run a hotel, B&B, or holiday apartment in South Tyrol and you find yourself answering the same guest questions on evenings and weekends, this is worth a conversation. It does not require you to understand AI systems. It requires you to have your property information written down — which you probably already do, scattered across a few documents. I put it into a single knowledge base, configure the assistant, and you get the benefits without the complexity. If you want to see what it would look like for your specific property, contact me and I will put together a concrete example using your actual information.

Portfolio · Drawing Stamp
Drawn by
G. STANCUTA
Discipline
AI & AUTOMATION
Location
MORTER · SÜDTIROL
Status
Available
Languages
IT · EN · RO · DE+
Stack
PLOI · HETZNER
Revision
REV 2026.A
2026

© 2026 Gabriel Stancuta · jumpinotech.com — Architected with AI, built to run itself.