Skip to Content
The Makinari API repo now includes an MCP Server — connect your AI models directly. View on GitHub →

Troubleshooting

Common Issues

Chat does not appear:

// Verify initialization if (!window.MarketFit.chat.isEnabled()) { console.log('Chat is not enabled'); } // Verify configuration console.log(window.MarketFit.chat.getConfig());

Messages are not sent:

// Verify connection state const state = window.MarketFit.chat.getState(); console.log('Chat state:', state);

Widget does not respond:

// Reinitialize widget window.MarketFit.chat.remove(); // Reconfigure as needed
Last updated on