Installation
Installation for Qefro cloud means signing up at app.qefro.com, verifying email, and creating an organization (tenant). You do not install vector databases, LLM gateways, or RAG infrastructure yourself.
Introduction
Qefro is a multi-tenant SaaS platform. Production hosts:
| Surface | URL |
|---|---|
| Marketing | https://qefro.com |
| Admin Console | https://app.qefro.com |
| API | https://api.qefro.com |
| Widget CDN | https://cdn.qefro.com/widget.js |
| Internal Portal | your-company.qefro.com (or custom domain) |
Why it exists
Teams need Customer AI and Employee AI without operating embedding pipelines, hybrid search, or tool-execution sandboxes.
Concepts
- Organization / tenant — billing and isolation boundary created at signup
- Admin Console — configure workspaces, knowledge, Business Tools, channels, RBAC
- Workspace — isolated knowledge + tools + conversations (e.g. Customer Support, HR)
- Plan — Free, Starter, Growth, Enterprise (Razorpay billing)
Architecture
Workflow
Cloud setup
- Register — Create an account at app.qefro.com with a work email.
- Verify email — Complete OTP / email verification before inviting teammates.
- Create organization — Choose a display name and tenant slug (used for your-company.qefro.com).
- Open Admin Console — Create your first workspace and upload knowledge.
Code examples
- Bash
- TypeScript
# Health (no auth)
curl -sS https://api.qefro.com/health
# Ready (dependencies)
curl -sS https://api.qefro.com/ready
const res = await fetch('https://api.qefro.com/health');
console.log(await res.text());
Best practices
- Use a real company email for ownership and billing
- Enable MFA / strong passwords on Owner accounts before connecting production APIs
- Prefer separate workspaces for Customer Support vs internal HR/IT
Security notes
FAQ
Do I need Docker?
Not for Qefro cloud. Private / Enterprise deployment is a separate conversation with Sales.
Where is GraphQL?
Primary Admin Console API is GraphQL at POST https://api.qefro.com/graphql (authenticated). REST covers uploads, billing, tools, widget, WhatsApp, and org RBAC.