DASHBOARD_OVERVIEW
Real-time insights for Your Organization.
Welcome to Nova
Your organization is ready. Integrate the agent to start seeing metrics.
Loading code...
Conversation Volume
Recent Feedback
Peak Activity Hours (24h)
NOVA_DATA_INDEX
Manage the knowledge base and indexed content for your agent.
Indexed Content
USAGE_BILLING
Monitor your API consumption and billing details.
Monthly Conversations
Your free tier includes 100,000 conversations per month. Overage fees apply thereafter.
Overage Fees Applied
You have exceeded the monthly limit by 0 conversations.
Rate: ₹4.50 per additional conversation
DEPLOYMENT_GUIDE
Configuration required to successfully deploy the AI Agent on your website.
Overview & Problem Statement
To function correctly, the Galaxa Nova AI Agent must execute its bootstrap loader script and then instantly download its chat widget from a high-speed CDN. Finally, it must communicate with the backend AI service. Strict Content Security Policies (CSP) may block these actions, resulting in browser console errors such as:
Refused to connect to 'https://api.nova.galaxa.in/...' because it violates the following Content Security Policy directive: "connect-src 'self' ..." Refused to load script from 'https://cdn.galaxa.in/...' because it violates the following Content Security Policy directive: "script-src 'self' ..."
Required Configuration Changes
To authorize the AI Agent's new blazing-fast architecture, your engineering team needs to update the Content Security Policy (CSP) header on the web server or CDN (e.g., Akamai).
| Directive | Purpose | Required Change |
|---|---|---|
| script-src | Allows the browser to load the initial loader.js and immediately fetch the actual chat widget script from the CDN. |
Append https://api.nova.galaxa.in https://cdn.galaxa.in |
| connect-src | Allows the agent to fetch answers from the backend AI service and verify your organization slug. | Append https://api.nova.galaxa.in |
| img-src or default-src |
(Highly Recommended) Allows the UI to render bot avatars, icons, and visual assets fetched directly from the CDN. | Append https://cdn.galaxa.in |
Example Updated Header
Current header snippet (approximate):
content-security-policy: script-src 'self' https://cdnjs.cloudflare.com ...; connect-src 'self' https://cm.everesttech.net ...;
Proposed header snippet:
content-security-policy: script-src 'self' https://cdnjs.cloudflare.com https://api.nova.galaxa.in https://cdn.galaxa.in ...; connect-src 'self' https://cm.everesttech.net https://api.nova.galaxa.in ...; img-src 'self' https://cdn.galaxa.in ...;
Implementation Steps (DevOps/Akamai Admins)
- Locate CSP Configuration: Access the Akamai Property Manager or the Nginx/Apache configuration for your domain.
- Edit Policy: Find the
Content-Security-Policyheader definition. - Append Domains: Add
https://api.nova.galaxa.inandhttps://cdn.galaxa.into thescript-srcandconnect-srclists as outlined above. - Verify:
- Purge cache (if applicable).
- Load the site and verify that the console error
Refused to connect...is gone. - Verify that the agent loader script executes, dynamically downloads from the CDN, and the chat window appears.
Security Note
Whitelisting https://api.nova.galaxa.in and https://cdn.galaxa.in grants trust only to these specific Galaxa domains. It does not open the site to wildcard access (*) or other untrusted parties. The agent communication remains fully encrypted via HTTPS.
SETTINGS
Manage your profile and security preferences.
Update Email
Change Password
CONTACT_SUPPORT
Need help? Send a message directly to our engineering team.