A React/Next.js component library for SuperIntern AI chat agents
📚 View Full Documentationimport { EmbeddedChat } from 'superintern-web-sdk';
export default function ChatPage() {
return (
<div style={{ height: '600px' }}>
<EmbeddedChat
baseSettings={{
apiKey: "YOUR_API_KEY",
}}
aiChatSettings={{
aiAssistantName: "Assistant",
introMessage: "👋 Hi! How can I help?",
}}
/>
</div>
);
}