Skip to content

Install SDK

Add the Cyborg React SDK to your application.

Installation

bash
npm install @cyborg-sdk/react

Basic Usage

tsx
import { ChatProvider } from '@cyborg-sdk/react'

function App() {
  return (
    <ChatProvider apiKey="your-api-key">
      {/* Your app components */}
    </ChatProvider>
  )
}

The chat interface will automatically render in the bottom-right corner of your application.

Next Steps

Continue to React SDK Documentation →

Built with VitePress