> ## Documentation Index
> Fetch the complete documentation index at: https://docs.laburen.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Bubble

> Instalar en tu sitio web

Para instalar un Agente en tu sitio web utilizando el widget Bubble, usa el siguiente fragmento de código:

```html theme={null}
<script type="module">
  import Chatbox from 'https://cdn.jsdelivr.net/npm/@laburen/embeds@latest/dist/chatbox/index.js';

  Chatbox.initBubble({
    agentId: 'TU_ID_DE_AGENTE',
  });
</script>
```

Reemplaza `TU_ID_DE_AGENTE` con el ID de tu Agente

<Note>
  Puedes encontrar el ID del Agente en la configuración del Agente bajo la pestaña Configuración.
</Note>

Consulta todos los atributos disponibles en la [Referencia del Chatbot](/widgets/chatbot/reference).
