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

# FAQ & Help Center

> Increase Conversions and Engagement with Zeroagent

Zeroagent acts as knowledge based agents, helping to supercharge your documentation, help center, blogs, and landing pages. It ensures a seamless and personalized experience for your users, while reducing your workload and maximizing engagement.

* 🤝 **Instant Responses:** Provide immediate, AI-driven answers to customer queries, reducing wait times and improving satisfaction.
* 🎯 **Contextual Support:** Zeroagent understands user questions and provides precise, relevant answers from your help center articles.
* 📊 **Actionable Insights:** Analyze user interactions to identify content gaps and improve your help center.

Zeroagent transforms your help center into a 24/7 customer support powerhouse

## Connecting with Docs

<Steps>
  <Step title="🛠️ Select site">
    Click `add site` and choose `website`.
  </Step>

  <Step title="🔑 Embed SDK">
    Add the `script code` to your application.

    <CodeGroup>
      ```html HTML theme={null}
      <div id="zeroagent-ai-widget"></div>
      <script src="https://cdn.jsdelivr.net/npm/@zeroagent/js@latest/dist/index.js"></script>
      <script>
      Zeroagent('<YOUR_APP_ID>', '<YOUR_APP_KEY>');
      </script>
      ```

      ```js React theme={null}
      // install package
      npm install @zeroagent/js

      // code
      import Zeroagent from '@zeroagent/js';
      <Zeroagent appID={'<YOUR_APP_ID>'} appKey={'<YOUR_APP_KEY>'} />
      ```

      ```js Next theme={null}
      // install package
      npm install @zeroagent/js

      // code
      'use client';
      import Zeroagent from '@zeroagent/js';
      <Zeroagent appID={'<YOUR_APP_ID>'} appKey={'<YOUR_APP_KEY>'} />
      ```

      ```js Vue theme={null}
      // index.html [Recommended]

      <div id="zeroagent-ai-widget"></div>
      <script src="https://cdn.jsdelivr.net/npm/@zeroagent/js@latest/dist/index.js"></script>
      <script>
      Zeroagent('<YOUR_APP_ID>', '<YOUR_APP_KEY>');
      </script>

      (or)

      // peer-dependency: react package required
      npm install @zeroagent/js react

      // code
      import Zeroagent from '@zeroagent/js';
      <Zeroagent appID={'<YOUR_APP_ID>'} appKey={'<YOUR_APP_KEY>'} />
      ```
    </CodeGroup>
  </Step>

  <Step title="🗂️ Knowledge Base">
    Our system `crawls` automatically all the pages of the website and adds them to AI knowledge base. You can also add `addtional information` as `pdf, xls`.

    <Note>
      Learn more about the [Knowledge Base](/knowledge-base).
    </Note>
  </Step>

  <Step title="⚙️ Chat Setting">
    Update your chat widget interface settings
  </Step>

  <Step title="✅ AI Assistant is Live">
    Your AI Assistant is live and ready to assist users.
  </Step>
</Steps>

Zeroagent turns static content into a dynamic, interactive assistant that empowers users, reduces support costs, and drives engagement. Transform the way you connect with your audience today!

## Troubleshooting

<Info>
  Troubleshooting: Error adding zeroagent in Next JS: [Refer here](/materials/faqs#troubleshooting-error-adding-zeroagent-in-next-js)
</Info>

For any issues or errors, refer to our [FAQ](/materials/change-logs) or contact our [Support Team](mailto:support@zeroagent.io?subject=Feedback).
