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

hexabot-helper-chatgpt

v2.0.1

Published

The OpenAI ChatGPT Helper Extension for Hexabot Chatbot / Agent Builder to enable the LLM Capability

Downloads

164

Readme

Hexabot ChatGPT Helper Extension

The Hexabot ChatGPT Helper Extension is a utility class designed to facilitate interaction with the ChatGPT API from other Hexabot extensions (such as plugins, channels, etc.). This helper allows developers to easily invoke the ChatGPT API and integrate natural language understanding and response generation into Hexabot's chatbot builder.

Hexabot is an open-source chatbot / agent solution that allows users to create and manage AI-powered, multi-channel, and multilingual chatbots with ease. If you would like to learn more, please visit the official github repo.

Features

  • API Integration: Seamlessly connect to OpenAI's ChatGPT API, enabling other extensions within Hexabot to access ChatGPT's capabilities.
  • Configurable Settings: Configure parameters like model type, temperature, maximum tokens, penalties, and more for customized behavior.
  • Easy Integration: Use as a helper utility to invoke the ChatGPT API from any other extension within Hexabot.
  • Flexible Options: Supports various options such as response format, stop sequences, log probabilities, and more to customize the behavior of ChatGPT.

Installation

To use the ChatGPT Helper Extension within Hexabot, follow these steps:

cd ~/projects/my-chatbot
npm install hexabot-helper-chatgpt
hexabot dev

Make sure you have the appropriate access credentials for the ChatGPT API.

Usage

The ChatGPT Helper can be used to generate responses based on user input or integrate into more complex workflows involving conversation history and system prompts. Here's an overview of how to use this helper:

Settings

The extension provides configurable settings that can be adjusted to suit your needs. Below are the available settings:

  • API Token: The API key to authenticate with the ChatGPT API.
  • Model: Specifies which model to use (default: gpt-4o-mini).
  • Temperature: Controls the randomness of the output (default: 0.8).
  • Max Completion Tokens: The maximum number of tokens for the completion (default: 1000).
  • Frequency Penalty: Controls the repetition of words (default: 0).
  • Presence Penalty: Controls the introduction of new topics (default: 0).
  • Tool Choice: Option for using specific tools (none, auto, or required).
  • Response Format: Format of the response (text or json).

These settings can be customized using the Hexabot admin interface or programmatically via the Hexabot API.

Example Integration

To use the ChatGPT Helper, simply inject the ChatGptLlmHelper class and use it as shown below:

const chatGptHelper = this.helperService.use(
  HelperType.LLM,
  ChatGptLlmHelper,
);
// ...
const text = await chatGptHelper.generateChatCompletion(
  context.text,
  args.model,
  systemPrompt,
  history,
  {
    ...options,
    user: context.user.id,
  },
);

Contributing

We welcome contributions from the community! Whether you want to report a bug, suggest new features, or submit a pull request, your input is valuable to us.

Please refer to our contribution policy first : How to contribute to Hexabot

Contributor Covenant

Feel free to join us on Discord

License

This software is licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms:

  1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission.
  2. All derivative works must include clear attribution to the original creator and software, Hexastack and Hexabot, in a prominent location (e.g., in the software's "About" section, documentation, and README file).

Happy Chatbot Building!