Skip to main content

Chatbot Version 1.0.0 - Release Notes

📋 Select Chatbot Version:
Latest (v2.0)RECOMMENDED
Version 2.0STABLE
Version 1.0.0DEPRECATED
💡 Tip: Use the latest version for new integrations. Version-specific docs help with maintenance and troubleshooting.

📋 Version 1.0.0 - Initial stable release

What's New in 1.0.0​

Core Features​

  • ✅ WebSocket Connection - Real-time chat communication
  • ✅ Token-Based Authentication - Secure backend token management
  • ✅ Basic Configuration - Essential customization options
  • ✅ Message Display - Clean chat interface
  • ✅ Default Questions - Suggested questions for users

Integration​

<script>
(async function () {
try {
const r = await fetch('/api/ept-token', { credentials: 'include' });
const { access_token } = await r.json();

window.eptAIConfig = {
accessToken: access_token,
botName: 'AI',
defaultQuestions: ["What are your products?"]
};

const script = document.createElement('script');
script.src = 'https://assets.ept.ai/chat/v0/ept_chat_loader.bundle.js';
script.async = true;
document.body.appendChild(script);
} catch (error) {
console.error('Error initializing chatbot:', error);
}
})();
</script>

Configuration Options​

  • accessToken - Required authentication token
  • botName - Bot display name
  • defaultQuestions - Array of suggested questions
  • darkMode - Basic theme support
  • hideLogo - Hide/show branding

Version Targeting​

Specific Version​

<!-- Pin to exact version -->
<script src="https://assets.ept.ai/chat/v1.0.0/loader.js"></script>

Track-Based (Not available in 1.0.0)​

Track-based deployment was introduced in later versions.

Limitations​

  • No track-based deployment
  • Manual script URL management required
  • Limited configuration options
  • Basic error handling only

Upgrade Path​