The MedAssist TypeScript SDK provides a complete solution for integrating medical AI chat functionality into your web applications. It includes all chatbot functionalities with a configurable UI layer that can be customized to match your application’s design.
// Use headless mode (no UI)const medAssist = new MedAssist({ apiKey: 'your-agent-id', headless: true});// Handle messages in your own UImedAssist.on('messageReceived', (message) => { // Update your custom chat interface updateCustomChatUI(message);});