Theme
CCaaS Integration
Agent Assist connects to your contact center platform to receive real-time conversation events and deliver suggestions to agents. The following platforms are supported:
| Platform | Voice (STT) | Digital (Chat/Messaging) | Event Delivery | Widget Auth |
|---|---|---|---|---|
| Genesys Cloud | AudioHook | Notification API | Pub/Sub | OAuth PKCE |
| Five9 | Agent Desktop Toolkit | ADT SDK | Webhook / Socket.IO | ADT session or URL params |
| 8x8 | Event Streaming | Event Streaming (Pulsar) | Pulsar WSS | Embed token + URL params |
| Salesforce | -- | Lightning Message Service | LWC postMessage | Token exchange |
| Google CCAI | Native CCAI STT | Native CCAI | Pub/Sub | OAuth |
Salesforce
For Salesforce Service Cloud, see the dedicated Salesforce Integration guide, which covers Visualforce page setup, Lightning Web Component deployment, and real-time chat message forwarding.
CCaaS integration setup page with provider selection, credentials form, and test connection button
Genesys Cloud
Genesys Cloud integration uses queue-based routing, Notification API for digital messages, and AudioHook for voice transcription.
Setup Steps
- Create a Genesys Cloud OAuth client with the following scopes:
conversations:readnotifications:subscriberouting:readusers:readonly(for agent identification)
- Configure AudioHook in your Genesys Cloud organization to point to your Agent Assist audiohook endpoint (for voice calls).
- Create a tenant integration in the OmniBots admin portal with your Genesys Cloud credentials (client ID, client secret, environment).
- Map queues to knowledge bases. Navigate to Middleware > Queue Mapping to associate each queue with a specific KB and system prompt so agents on different queues receive relevant suggestions.
- Deploy the widget as a Genesys Interaction Widget. See Widget Deployment for iframe configuration details.
- Test the connection using the integration test button in the admin portal.
How It Works
- Voice: Genesys streams audio via the AudioHook WebSocket protocol. The audiohook service transcribes speech in real time and publishes transcripts to Pub/Sub for processing.
- Digital: The widget's Genesys provider connects to the Genesys Notification API via WebSocket, subscribing to conversation message topics. New customer messages are forwarded to the connector service which triggers the RAG pipeline.
- Agent auth: Agents authenticate via OAuth 2.0 Authorization Code with PKCE. The widget handles the redirect flow automatically.
TIP
AudioHook provides real-time transcription for voice calls. For chat-only deployments, AudioHook configuration is not required.
Five9
Five9 integration uses the Agent Desktop Toolkit (ADT) SDK for conversation events and agent context.
Setup Steps
- Configure Five9 Agent Desktop Toolkit in your Five9 domain to allow the widget iframe.
- Create a tenant integration in the OmniBots admin portal with your Five9 credentials.
- Map queues to knowledge bases under Middleware > Queue Mapping.
- Deploy the widget as an iframe in the Five9 Agent Desktop. The widget URL accepts
callId,agentId,agentName, andskillas query parameters. - Test the connection by initiating a test call.
How It Works
- Voice: Five9 streams audio to the audiohook service, or the widget receives call events via the ADT SDK.
- Digital: Chat events arrive via the ADT SDK
onChatEvent()listener. The widget forwards customer messages for RAG processing. - Agent auth: The widget extracts agent context from the ADT SDK
getSessionContext()call, or falls back to URL parameters (agentId,agentName).
8x8
8x8 integration uses the Pulsar-based Event Streaming API for real-time interaction lifecycle events and the Partner Communication SDK for widget embedding.
Setup Steps
- Enable Event Streaming in your 8x8 Admin Console for the tenant.
- Create a tenant integration in the OmniBots admin portal with your 8x8 credentials (API key, tenant ID).
- Configure the Event Streaming subscriber -- the connector service subscribes to 8x8's Pulsar WSS endpoint and listens for interaction lifecycle events (
InteractionAccepted,InteractionCompleted, etc.). - Map queues to knowledge bases under Middleware > Queue Mapping.
- Deploy the widget as a Partner Integration iframe in 8x8 Agent Workspace. The widget URL accepts
iid(interaction ID) oraid(agent ID) as query parameters. - Test the connection by accepting a test interaction.
How It Works
- Voice & Digital: 8x8 Event Streaming publishes interaction events to a Pulsar topic. The connector service's
EventStreamSubscriberconsumes these events and correlates them to connected widget sockets via agent ID mapping. - Agent auth: The widget authenticates via the embed token. Agent identity is resolved from URL parameters or Event Streaming context stored in Redis.
- SDK: The
@8x8/pui-partner-commSDK provides theme, locale, and heartbeat integration to keep the widget iframe alive.
Google CCAI
Google Contact Center AI integration uses native Dialogflow CX agents and Pub/Sub event delivery. This is the integration used in google_native mode.
Setup Steps
- Create a Dialogflow CX agent in your Google Cloud project (or use an existing one).
- Enable the CCAI Insights API in your Google Cloud project.
- Create a Pub/Sub topic for conversation events (e.g.,
agent-assist-events). - Create a tenant integration in the OmniBots admin portal with your Google Cloud credentials (project ID, service account key, Dialogflow agent ID).
- Configure the Pub/Sub subscription to deliver events to Agent Assist.
- Test the connection using the integration test button.
Pub/Sub Subscription Flow
The Pub/Sub subscription connects your CCaaS event stream to Agent Assist:
- Your contact center publishes conversation lifecycle events (start, message, end) to the configured Pub/Sub topic.
- Agent Assist creates a push subscription on that topic pointing to its ingest endpoint.
- Inbound events are validated, deduplicated, and routed to the correct tenant session.
- The assist pipeline processes each event and pushes suggestions back to the agent via Socket.IO.
WARNING
Ensure the Pub/Sub subscription has appropriate IAM permissions. The Agent Assist service account needs roles/pubsub.subscriber on the topic.
Queue-to-KB Mapping
Regardless of which CCaaS platform you use, you can map individual queues to specific knowledge bases and system prompts. This ensures agents on different queues receive suggestions relevant to their domain.
Navigate to Middleware > Queue Mapping to configure:
| Setting | Description |
|---|---|
| Queue | The CCaaS queue or skill group name |
| Knowledge Base | Which KB to search for this queue |
| System Prompt | Custom prompt to guide answer generation |
| LLM Integration | Which LLM to use (overrides tenant default) |
If no queue mapping is configured, the tenant's default KB and system prompt are used.
Platform Comparison
| Feature | Genesys Cloud | Five9 | 8x8 | Salesforce | Google CCAI |
|---|---|---|---|---|---|
| Voice transcription | AudioHook | AudioHook / ADT | Event Streaming | -- | Native CCAI |
| Chat support | Yes | Yes | Yes | Yes (LWC) | Yes |
| Event delivery | Pub/Sub + Notification API | ADT SDK | Pulsar WSS | LWC postMessage | Pub/Sub |
| Suggestion source | OmniBots RAG | OmniBots RAG | OmniBots RAG | OmniBots RAG | Dialogflow CX or RAG |
| Queue/skill routing | Queue-based | Skill-based | Queue-based | Omni-Channel | Profile-based |
| Send message | Yes (web messaging) | -- | -- | Yes (via LWC) | -- |
| Save summary | Yes (wrap-up notes) | -- | -- | Yes (via LWC) | -- |
Verifying the Integration
After setup, verify the integration is working:
- Start a test conversation in your contact center.
- Open the Service Health dashboard to confirm events are arriving.
- Check the event inspector for any delivery errors.
- Confirm suggestions appear in the agent widget.
