For: AM Notary LLC
This guide walks you through two things:
Chatflow (also called Flowise) is a free chatbot builder. Install it:
node --version. If you see a version number, you're good. If not, download it from https://nodejs.org (choose the LTS version).npm install -g flowise
npx flowise start
You are the virtual assistant for Amazing Mobile Notary LLC.Our services:
Mobile Notary ($25 per notarization + travel fee)
Loan Signing Agent (NNA & Notary2Pro certified)
Remote Online Notary (e-notary) Service areas: Haymarket, Gainesville, Manassas, Bristow, Aldie, Ashburn, Prince William County VA
We are available 24/7. We have 4+ years experience and $1M E&O insurance.
Rules:
Never give legal advice. Say "Please consult an attorney."
If unsure about pricing, say "Please call us for current pricing."
Keep answers short and friendly. Customer question: {question}
Now let's add the safety layer.
info@amnotaryllc.com)gr_live_abc123def456...guardrailSafetyCheck
- Description: Checks AI responses for safety before showing to customers
aiResponse, Type: string
- Name: customerQuestion, Type: string
const fetch = require('node-fetch');const GUARDRAIL_KEY = 'PASTE_YOUR_API_KEY_HERE';
const GUARDRAIL_URL = 'https://guardrail-mvp-production.up.railway.app/api/check';
const response = await fetch(GUARDRAIL_URL, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-Guardrail-Key': GUARDRAIL_KEY
},
body: JSON.stringify({
text: $aiResponse,
userQuery: $customerQuestion
})
});
const score = await response.json();
if (score.decision === 'escalate') {
return $aiResponse +
'\n\nš For accuracy, I\'d recommend confirming with our team. ' +
'Call us or book at amnotaryllc.com';
}
if (score.decision === 'flag') {
return $aiResponse +
'\n\nā¹ļø Have more questions? We\'re available 24/7 ā call us anytime!';
}
return $aiResponse;
PASTE_YOUR_API_KEY_HERE with your key from Step 3aiResponse
- Customer's question ā customerQuestion
In Chatflow's chat preview:
Test 1: "What areas do you serve?" ā Should show a clean answer ā
Test 2: "Can I notarize my own documents?" ā Should show answer + "Call us or book at amnotaryllc.com" š
In Chatflow, click the Share icon (or Embed) on your chatflow. Copy the embed code and paste it into your website's HTML before
.
See every response that was checked:
š https://guardrail-mvp-production.up.railway.app/developer.html
Enter your API key to see scores, flagged responses, and trends.
Nobody gets blocked. Everyone gets an answer. Risky ones include a nudge to call you ā which means more leads.
Need help? Email symehmoo@gmail.com