npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

gptx-chatbot-ui

v1.0.0

Published

Integrate chatbots into third-party pages via gptx-chatbot-ui

Downloads

73

Readme

gptx-chatbot-ui(beta)

Use gptx-chatbot-ui to integrate an assistant into third-party pages (beta).

The code will be open source after it is perfected.

Steps

1.Get sharedKey

Create a chat assistant by:

Assistant -> Publish -> Web page share -> configuration completed -> get sharedKey

2.Install

npm install gptx-chatbot-ui
# or
pnpm install gptx-chatbot-ui

3.Usage

1. Using Vue framework as an example, similar for other frameworks

<template>
  <div class="my-chat">
    <div id="chat-container" style="height: 100%;" />
  </div>
</template>
<script>
/* full */
import { SafeGenChat } from 'gptx-chatbot-ui';
import 'gptx-chatbot-ui/lib/full/style.css';

/* or lite */
// import { SafeGenChat } from 'gptx-chatbot-ui/lib/lite/gptx-chatbot-ui-lite.js';
// import 'gptx-chatbot-ui/lib/lite/style.css';

/* custom icon */
// import askIcon from "@/assets/3.jpg";
// import answerIcon from "@/assets/4.jpg";

/* or public dir */
import askIcon from "/1.jpg";
import answerIcon from "/2.jpg";

export default {
  mounted() {
     // Configuration object for the chat application
    const config = {
      el: '#chat-container', // The DOM element
      chatBaseApi: 'https://api.safegen.ai/v2', // required
      sharedKey: 'your sharedKey', // sharedKey
      locale: 'zh-CN', // 'zh-CN', 'en'(default), 'zh-TW'
      customIcon: {
        ask: askIcon,
        answer: answerIcon
      }
    };

    // init
    const chatInstance = new SafeGenChat(config);
    console.log(chatInstance); // application instance
  }
};

</script>

<style lang="scss" scoped>
.my-chat {
  height: 800px;
  width: 600px;
  margin: 0 auto;
}
</style>

2. Using js (ESM)

<head>
    <title>demo</title>
    <!-- css -->
    <link rel="stylesheet" href="./style.css">
</head>

<div class="my-chat">
  <div id="chat-container" style="height: 100%;" />
</div>

<script type="module">
  /* full */
  import { SafeGenChat } from './gptx-chatbot-ui.js';

  /* or lite */
  // import { SafeGenChat } from '/gptx-chatbot-ui-lite.js';
  
  // Configuration object for the chat application
  const config = {
    el: '#chat-container', // The DOM element
    chatBaseApi: 'https://api.safegen.ai/v2', // required
    sharedKey: 'your sharedKey', // sharedKey
    locale: 'zh-CN', // 'zh-CN', 'en'(default), 'zh-TW'
  };

  // init
  const chatInstance = new SafeGenChat(config);
  console.log(chatInstance); // application instance
</script>

<style>
  .my-chat {
    height: 800px;
    width: 800px;
    margin: 0 auto;
  }
  </style>

3. gptx-chatbot-ui VS gptx-chatbot-ui-lite

The only difference between the two is that the lite version does not use highlight.js to highlight the code syntax. If you do not have code syntax output or do not care about the beauty of the code syntax display, it is recommended to use the lite version, which will significantly reduce the size (about 63%).

4. SSR Integration (This problem exists in versions before 0.1.0 beta.27. You can ignore this part in new versions.)

When using an SSR framework(Next.js, Nuxt.js), you might encounter an error like this if SafeGenChat is not properly included:

ReferenceError:window is not defined

This error occurs because SSR environments do not recognize the window object, but SafeGenChat relies on it. To address this, you need to ensure SafeGenChat initializes correctly on the client side only.

Here’s how to handle this in Next.js:

  1. Create the ChatBot component
// components/ChatBot.tsx

import React, { useEffect } from 'react';
import { SafeGenChat } from 'gptx-chatbot-ui';
import 'gptx-chatbot-ui/lib/style.css';

const ChatContent = () => {
    useEffect(() => {
        const config = {
            el: '#chat-container', // Target DOM element
            chatBaseApi: 'https://XXX/v2', // Required API endpoint
            sharedKey: 'your sharedKey', // API key
            locale: 'en', // Language setting: 'zh-CN', 'en' (default), 'zh-TW'
        };
        new SafeGenChat(config);
    }, []);

    return (
        <div className='w-[450px] p-[10px]'>
            <div id="chat-container" style={{ width: '100%', height: '100%' }} />
        </div>
    );
};
export default ChatContent;
  1. Dynamically import the ChatBot component to ensure it only loads on the client side
// pages/_app.tsx

import dynamic from 'next/dynamic';

const DynamicChatBot = dynamic(() => import('@/components/ChatBot'), { ssr: false });

export default function RootLayout({ children }: { children: React.ReactNode }) {
  return (
    <html lang="en">
      <body className={`inter.className main-content`} suppressHydrationWarning={true}>
        {children}
        <DynamicChatBot />
      </body>
    </html>
  );
}

This setup ensures SafeGenChat initializes correctly by deferring its loading until the client-side rendering is complete, avoiding issues with SSR.

Config

| key | type | required | default | desc | | ------------ | ------ | ---- | ---------|------------ | | el | string | true | none |The DOM element where the chat will be mounted | | chatBaseApi | string | true | none |SafeGen AI(International):https://api.safegen.ai/v2, 千问千答(China):https://chat.dappworks.cn/v2 | | sharedKey | string | true | none | - | | locale | string | false | 'en' |'zh-CN', 'en', 'zh-TW' | | customIcon.ask | string | false | 'default' | Don't use relative paths | | customIcon.answer | string | false | 'default' | Don't use relative paths |