SuperIntern Web SDK

A React/Next.js component library for SuperIntern AI chat agents

📚 View Full Documentation

🚀 Quick Start

import { 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>
  );
}

✨ Features

  • Easy-to-use React components with full TypeScript support
  • Multiple component variants (Embedded, Modal, Button, Search)
  • Programmatic API for complete control
  • Customizable styling and theming
  • Next.js optimized with SSR support