OpenAI ChatGPT

Overview

With the ChatGPT component plugin you can customize the chatbot’s appearance to match your company's brand, using your color palette and iconography to ensure a seamless user experience. Additionally, you can configure the plugin to respond exclusively as an assistant for your company, preventing it from answering out-of-context questions.

Note: You must download the OpenAI connected system to use the OpenAI ChatGPT component plugin.

Key Features & Functionality

  1. Multi-language support - With advanced NLP capabilities, ChatGPT can understand and respond to multiple languages, making it an ideal tool for organizations operating in global markets.
  2. Styling - Customize the plugin's appearance to match your company's brand, using your color palette and iconography to ensure a seamless user experience.
  3. Customize Assistant Behavior - Set the system message and initial message to adapt the chatbot to your use case. Instruct it to act as a representative of your organization which only responds to questions relating to your enterprise.

This plugin is End of Life and is no longer under active maintenance. A more comprehensive generative AI chatbot can be found here. The AI Knowledge Assistant can be used as a ChatGPT chatbot or as a way to extract nuanced insights from the Appian Knowledge Center.

Anonymous
Parents
  •  ChatGPTChatBot(
        label: "",
        labelPosition: "ABOVE",
        validations: {},
        height: "AUTO",
        openAIConnectedSystem: cons!AKA_OPENAI_CC,
        systemMessage: "You are a helpful assistant.",
        
        initialMessage: "How I can help you?",
        model: "gpt-3.5-turbo",
        temperature: 1,
        top_p: 1,
        n: 1,
        stop: null,
        max_tokens: 100,
        presence_penalty: 0,
        frequency_penalty: 0,
        user: loggedInUser(),
        style: {
          titleText: "Chat with Us",
          titleTextColor: "#FBFBFB",
          titleBackgroundColor: "#010A50",
          GPTTextColor: "#332D2D",
          GPTChatColor: "#f5f6f7",
          userTextColor: "#FBFBFB",
          userChatColor: "#2621F6",
          sendButtonColor: "#000000",
         
        },
        chatHeight: null
      )

    I tried to use this component, but I am not getting any messages from the chatbot. Can you help me out, if I am doing something? wrong?

    Connected system is working fine, I tried with integration and there I am getting successful response.

Comment
  •  ChatGPTChatBot(
        label: "",
        labelPosition: "ABOVE",
        validations: {},
        height: "AUTO",
        openAIConnectedSystem: cons!AKA_OPENAI_CC,
        systemMessage: "You are a helpful assistant.",
        
        initialMessage: "How I can help you?",
        model: "gpt-3.5-turbo",
        temperature: 1,
        top_p: 1,
        n: 1,
        stop: null,
        max_tokens: 100,
        presence_penalty: 0,
        frequency_penalty: 0,
        user: loggedInUser(),
        style: {
          titleText: "Chat with Us",
          titleTextColor: "#FBFBFB",
          titleBackgroundColor: "#010A50",
          GPTTextColor: "#332D2D",
          GPTChatColor: "#f5f6f7",
          userTextColor: "#FBFBFB",
          userChatColor: "#2621F6",
          sendButtonColor: "#000000",
         
        },
        chatHeight: null
      )

    I tried to use this component, but I am not getting any messages from the chatbot. Can you help me out, if I am doing something? wrong?

    Connected system is working fine, I tried with integration and there I am getting successful response.

Children