Skip to main content

What is an AI Workspace?

An AI Workspace is a scoped AI environment inside an organization. It owns its own knowledge base, assistant instructions, Business Tools, and conversations. Unlike a single shared chatbot, workspaces keep Support, HR, IT, and other teams from mixing policies, tools, and chat history.

In Qefro, every Customer AI and Employee AI experience binds to one or more workspaces you configure in the Admin Console.

Short definition (citation-ready)

An AI Workspace is an isolated context for retrieval-augmented assistants and tool calls: documents, instructions, connectors, and conversations stay inside that workspace unless you deliberately share them.

Why AI Workspaces exist

Organizations rarely need “one bot for everything.” They need:

NeedWorkspace answer
Different audiencesCustomer Support vs Internal HR
Different knowledgePublic FAQs vs confidential policy
Different toolsOrder lookup vs payroll APIs
Different permissionsWidget visitors vs authenticated employees

Without workspaces, a single chatbot index becomes a privacy and accuracy risk: internal docs leak into customer answers, or tools meant for staff become callable from a public widget.

Core components

ComponentRole
KnowledgeUploaded files, crawled sites, OCR — indexed for hybrid RAG
InstructionsTone, language, refusal rules, product voice
Business ToolsREST / OpenAPI connectors with encrypted credentials
Business ActionsRuntime tool invocations during a conversation
ConversationsChannel-bound chat history for that workspace
ChannelsWebsite widget, WhatsApp, Internal Portal

Architecture

Tenant

Organization

Billing, members, branding, and the publishable widget token.

Scope

AI Workspace

Isolated knowledge, tools, instructions, and conversations.

Access

RBAC + Teams

Members only see workspaces they are granted.

ConceptHow it differs from an AI Workspace
AI chatbotOften one bot + one knowledge dump; weak multi-team isolation
Custom GPT / projectUsually personal or single-team; not a multi-tenant org platform
Helpdesk ticket botFocused on tickets; may lack employee portal + general RAG workspaces
Agent frameworkCode-first orchestration; Qefro workspaces are productized with Admin Console + channels

See also: AI Workspace vs AI Chatbot.

How Qefro implements AI Workspaces

  1. Sign up at app.qefro.com and create an organization (tenant).
  2. Create workspaces for each use case (Support, HR, IT, …).
  3. Ingest knowledge (POST /api/v1/documents) and configure instructions.
  4. Attach Business Tools when the assistant must call APIs.
  5. Bind channels: website widget, WhatsApp, or Internal Portal.

Admin Console APIs expose workspaces under /api/v1/org/workspaces. Day-to-day console operations also use GraphQL on api.qefro.com.

Workflow

Stand up one AI Workspace

  1. Name the audienceCustomer-facing or employee-only?
  2. Create the workspaceName it after the team or use case.
  3. Ingest knowledgeUpload docs or crawl approved URLs; verify citations.
  4. Add tools carefullyStart read-only; encrypt secrets; review logs.
  5. Bind a channelWidget, WhatsApp, or Internal Portal with RBAC.

Best practices

  • One primary audience per workspace (do not mix public FAQs with confidential HR).
  • Prefer citations and refusals over guessing when knowledge is thin.
  • Scope Business Tools to the minimum HTTP methods and paths required.
  • Use Teams so Members only access granted Employee AI workspaces.
  • Monitor analytics, feedbacks, and tool execution logs before expanding channels.

Common misconceptions

MythReality
“An AI Workspace is just a chatbot skin.”Workspaces isolate knowledge, tools, and conversations — not only UI.
“One workspace for the whole company is fine.”Cross-team mixing increases leakage and wrong-tool risk.
“RAG alone is enough.”Production assistants also need authz, SSRF controls, and identity forwarding for actions.

FAQ

Is an AI Workspace the same as an organization?
No. The organization (tenant) is the billing and isolation boundary. Workspaces live inside it and isolate use cases.
Can one workspace power both website and WhatsApp?
Yes. Customer AI channels can bind to the same Support workspace so knowledge stays consistent.
Do employees and customers share a workspace?
Usually no. Use separate workspaces (and often separate knowledge) for Customer AI vs Employee AI.
Where do I configure workspaces?
In the Admin Console at app.qefro.com, or via organization workspace APIs on api.qefro.com.