A reusable React chatbot component package
npm install @superwise.ai/superwise-chatbot-packagebash
npm install @superwise.ai/superwise-chatbot-package
`
Usage
Styles are auto-loaded by the package (no manual CSS import needed). Use the component:
`jsx
import { Chatbot } from "@superwise.ai/superwise-chatbot-package";
function App() {
return (
Demo Chatbot
title="Superwise Expert Agent"
agentId="AGENT_ID_HERE"
discoveryAgentId="DISCOVERY_AGENT_ID_HERE"
primaryColor="#000000"
apiUrl="API_URL_HERE"
/>
);
}
ReactDOM.createRoot(document.getElementById("root")).render( );
``