Take full control of your chatbot's behavior without automatic scanning
Instead of automatically scanning your website, you can manually define exactly how the AI assistant should behave. This gives you:
Click the buttons below to see how manual context mode works in real-time!
Here's how to implement manual context mode in your own projects:
const chatbot = new ChatbotWidget({
manualContext: true,
customSystemPrompt: 'You are a helpful customer service agent...',
customWelcomeMessage: 'Hello! How can I help you today?'
});
// Switch to sales mode
chatbot.setManualMode(true, {
systemPrompt: 'You are a sales assistant...',
welcomeMessage: 'Ready to find the perfect product?',
businessType: 'e-commerce'
});
// Update just the prompt
chatbot.updateSystemPrompt('You are now a technical expert...');