the chat widget enables you to interact with the Copilot from your dashboard and see the changes in realtime. OpenCopilot is a react web app that you can embed in your app.

there are several ways you can integrate the Copilot Chat widget into your application/webpage

  1. Download the latest build from GitHub and extract the zip file.

  2. Include the provided JavaScript file in the head of your document (use http://localhost:8888/pilot.js for local setup).

    <script src="https://cloud.opencopilot.so/pilot.js"></script>
    
  3. Init the copilot (when document fully loads) by calling the initAiCoPilot function and passing the required options.

    <script>
      const options = {
         apiUrl: "https://api.opencopilot.so/backend" // your base url where your are hosting OpenCopilot at (the API), usually it's http://localhost:8888/backend
         socketUrl: "https://api.opencopilot.so" // your socket server, usually it's http://localhost:8888/socket
         initialMessage: "Hey! happy to help.", // optional: you can pass an array of messages that will be sent to the copilot when it's initialized
         token: "your_copilot_token_goes_here", // you can get your token from the dashboard
         triggerSelector: "#triggerSelector", // the selector of the element that will trigger the copilot when clicked
         headers: {
           // optional: you can pass your authentication tokens to the copilot or any other header you want to send with every request
           Authorization: "Bearer your_auth_token_goes_here",
           AnyKey: "AnyValue"
         },
         containerProps: {
           // optional: you can pass any props to the container div
           className: "your-custom-class-name",
           style: {
               position: "fixed",
               height: "100%",
               bottom: "0",
               right: "0",
               width: "400px",
             },
         } 
    
       }
       window.addEventListener("DOMContentLoaded", ()=>initAiCoPilot(options)); // window.onload
    </script>
    

As a React Component

  1. Install the widget from npm.

     npm install @openchatai/copilot-widget 
    
  2. Use the Component inside your application

import { CopilotWidget,Root } from "@openchatai/copilot-widget"; // import the component
import '@openchatai/copilot-widget/index.css' // the required styles
const options = {
  apiUrl: "https://api.opencopilot.so/backend" // your base url where your are hosting OpenCopilot at (the API), usually it's http://localhost:8888/backend
  socketUrl: "https://api.opencopilot.so" // your socket server, usually it's http://localhost:8888/socket
  initialMessage: "Hey! happy to help.", // optional: you can pass an array of messages that will be sent to the copilot when it's initialized
  token: "your_copilot_token_goes_here", // you can get your token from the dashboard
  defaultOpen: true,
  headers: {
    // optional: you can pass your authentication tokens to the copilot or any other header you want to send with every request
    Authorization: "Bearer your_auth_token_goes_here",
    AnyKey: "AnyValue"
  },
}
const containerProps = {
  // optional: you can pass any props to the container div
  className: "your-custom-class-name",
  style: {
      position: "fixed",
      height: "100%",
      bottom: "0",
      right: "0",
      width: "400px",
    },
}
function Widget(){
  return (
    <Root containerProps={containerProps} options={options}>
    <CopilotWidget triggerSelector='#copilot-trigger' />
    </Root>
  )
}

Options

Options
Object

Available options

OptionDescriptiontype
initialMessageThe message that will be first present when the copilot is initializedstring
tokenYour copilot tokenstring
triggerSelectorThe selector of the element that will trigger the copilot when clickedstring
apiUrlthe url of the copilot api.string
headersAn object of headers that will be sent with every request (can be used to authenticate your api requests)Record<string,string>
containerPropsAn object of props that will be passed to the container divRecord<string,string>
socketUrlThe url of the socket url that will be used to send and receive messagesstring

FAQ