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

# Quick Start

## Installation

```shell theme={null}
npm i duix-guiji-light -S
```

## Quick Start

```js theme={null}

import DUIX from 'duix-guiji-light'

const duix = new DUIX()

duix.on('intialSucccess', () => {
  // start session
  duix.start({
    conversationId: '',
    openAsr: true
  }).then(res => {
    console.info(res)
  })
})

// initialization
duix.init({
  sign: 'xxxx',
  containerLable: '.remote-container'
})

```

**Note:** Do not put the duix instance in Vue's data or React's state (no need to make it reactive).
