Q: What are your hours?
A: We're open 9 AM - 5 PM EST, Monday-Friday.
Q: How do I reset my password?
A: Click "Forgot Password" on the login page.
Q: How much does it cost?
A: Plans start at $29/month.
Click "Import". Knowledge base is ready.
Step 4: Deploy (15 seconds)
Click "Deploy" → "Web Widget"
Customize (optional):
Primary color: #0066cc
Position: Bottom right
Welcome message: "Hi! How can I help?"
Click "Generate Code"
Copy this snippet:
html
Paste it before
on your website.
Done.
That's It
You now have a conversational support bot that:
✅ Answers questions from your knowledge base
✅ Captures leads when visitors ask things it can't answer
✅ Works on mobile and desktop
✅ Tracks analytics
✅ Costs $0 for first 1,000 conversations
Test It
Open your website. The chat widget appears in the bottom right.
Try asking:
"What are your hours?"
"How much does it cost?"
"Can you help me with [something not in your knowledge base]?"
The bot answers known questions instantly. For unknown questions, it offers to connect you with support or capture the user's email.
What Just Happened?
Behind the scenes, ilq.ai:
1. Ingested your content - extracted questions and answers
2. Created embeddings - for semantic search
3. Set up the bot logic - answer known questions, capture leads for unknown ones
4. Deployed the widget - optimized, cached, and served from CDN
5. Started tracking analytics - conversation volume, response quality, satisfaction
All in 60 seconds.
Customize It (Optional)
Add More Knowledge
Import from:
Notion
Google Docs
Confluence
Markdown files
PDF documents
Or use the API:
javascript
await ilq.knowledge.add({
question: "How do I cancel my subscription?",
answer: "Go to Settings → Billing → Cancel Subscription"
});
Change the Behavior
Enable human handoff:
javascript
ilq.config.update({
humanHandoff: {
enabled: true,
trigger: "user_requests" // or "bot_uncertain" or "both"
}
});
javascript
ilq.onIntent("book_demo", async (context) => {
return {
content: "Let's book a demo. What time works for you?",
components: [{
type: 'calendar',
integration: 'calendly',
url: 'https://calendly.com/your-team/demo'
}]
};
});