Nous construisons encore des choses ici ! Vous pourriez remarquer quelques bords rugueux pendant que nous travaillons sur des améliorations. Aidez-nous à améliorer en signalant des bugs ici.

Démarrage Rapide

Embarquez le widget et obtenez un jeton de widget depuis le serveur.

Aperçu du Widget

L'application widget est hébergée sur widget.companin.tech et offre un moyen simple d'intégrer un assistant IA dans votre site web. Pour commencer, vous devez créer un assistant et une application OAuth.

The widget is a lightweight, self-contained application that runs in an isolated iframe on your website. This architecture ensures that the widget won't conflict with your existing CSS or JavaScript, while maintaining excellent performance and security.

⚡ Quick Deployment

Most developers have the widget running on their site within 10 minutes. The setup process involves just three steps: creating credentials, configuring appearance, and adding a single script tag to your HTML.

1. Créer un Assistant

Tout d'abord, créez un assistant IA dans votre tableau de bord :

Your assistant is the AI brain behind the widget. It processes user messages, maintains conversation context, and generates intelligent responses. Each assistant can be customized with specific instructions, personality traits, and knowledge bases to match your use case.

  1. Allez dans votre tableau de bord et naviguez vers la page "Data Sources"
  2. Cliquez le bouton "Add" dans la section Assistants
  3. Remplissez les détails de l'assistant (nom, description, ton, etc.)
  4. Enregistrez l'assistant et notez son ID

Tip: Give your assistant clear, specific instructions about its role and limitations. For example: "You are a helpful customer support assistant for a SaaS product. You can answer questions about features, pricing, and account management. For technical issues, direct users to create a support ticket."

2. Créer une Application OAuth

Créez une application OAuth pour authentifier votre widget :

  1. Allez à la page "OAuth" dans votre tableau de bord
  2. Cliquez "Create Application"
  3. Remplissez le nom et la description de l'application
  4. Copiez le client_id de l'application créée

3. Intégrer le Widget via Iframe

Le moyen le plus simple d'intégrer le widget est de l'intégrer directement en utilisant un iframe. Cette méthode ne nécessite aucune initialisation JavaScript et fonctionne immédiatement.

HTML5embed.html
<iframe  src="https://widget.companin.tech/embed/session?clientId=YOUR_CLIENT_ID&assistantId=YOUR_ASSISTANT_ID&configId=YOUR_CONFIG_ID&locale=en"  style="border: none; position: fixed; bottom: 20px; right: 20px; z-index: 999999; background-color: transparent; width: auto; height: auto; border-radius: 8px;"  title="AI Assistant Widget"></iframe>

Remplacez YOUR_CLIENT_ID et YOUR_ASSISTANT_ID par vos valeurs réelles. Le paramètre locale peut être défini pour correspondre à la langue de votre site.

Avancé : Initialisation JavaScript

The recommended integration method is using our JavaScript widget loader, which provides automatic sizing, configuration management, and responsive behavior.

Script Integration

Add the following script tag to your HTML page:

HTML5index.html
<script  src="https://widget.companin.tech/widget.js"  data-client-id="YOUR_CLIENT_ID"  data-assistant-id="YOUR_ASSISTANT_ID"  data-config-id="YOUR_CONFIG_ID"  data-locale="en"  data-dev="false"></script>

Script Attributes

Each attribute serves a specific purpose in configuring your widget:

  • data-client-id: Your OAuth client ID - This authenticates your application with our API. Think of it as your app's password.
  • data-assistant-id: The UUID of your assistant - This identifies which AI assistant handles the conversations.
  • data-config-id: The UUID of your widget configuration - This determines how your widget looks and behaves (colors, size, position, etc.).
  • data-locale: Language code (e.g., "en", "es", "fr") - Sets the widget's display language. The assistant will still respond in any language users write in.
  • data-dev: Set to "true" for development mode (localhost) - Use this when testing locally. Remove or set to "false" for production.

The widget will automatically:

  • Fetch the configuration from the config ID
  • Size itself according to the widget dimensions in the config
  • Position the collapsed button based on the config settings
  • Start open or closed based on the config's start_open setting

Notes

  • The widget automatically manages its own sizing based on your configuration settings
  • The collapsed button position can be customized through the widget configuration
  • The widget respects the start_open setting from your configuration
  • All styling (colors, fonts, dimensions) is controlled through the widget configuration
  • The widget uses postMessage communication for responsive behavior
  • Development mode can be enabled with data-dev="true" for localhost testing