LogoLogo
LanguageHomeContact Support
  • Introduction
    • Welcome to Mampu AI 🌟
    • Finding Answer/Get Support
    • Subscribing Plan
  • Getting Started
    • Introduction
    • Define Your Objectives
    • Building Your Chatbot
    • Sustaining Success
  • CHATBOT FOR BEGINNERS
    • Introduction
    • What is a chatbot?
    • Channels
    • Benefits & Importance
    • Use Cases
  • PLATFORM
    • Signing Up (Website and App)
      • Platform Overview
      • Dashboard Interface
      • Navigation
      • Change Language
    • Connect to Social Media Channels
      • Facebook
        • FB Engagement Ads Button Setup
      • Instagram
      • Normal WhatsApp vs WhatsApp Cloud
        • WhatsApp Cloud (WhatsApp API)
        • Normal WhatsApp (WhatsApp Business/Personal APP)
          • Reconnect WhatsApp Bot (Troubleshooting QR Code & Connection Issues)
        • Finding the receipt for conversational cost for WhatsApp API
      • Telegram
    • WebChat Widget
      • Web app installation using Custom User ID method
  • FLOW BUILDER
    • Bot Page Overview
    • Field Variable
    • Basic Block of Flow Builder
      • Advanced Action - External Request (Custom integration)
    • Sub Flows
      • Sub Flow
      • Workflow
      • Function Flow
  • Artificial Intelligence
    • OpenAI | ChatGPT
      • Temporary AI key
      • Getting new/permanent OpenAI key
      • FAQ AI (Embedding)
        • Adding Information (1 by 1 / batch)
        • Updating Information
        • Uploading Media
        • Including Media
        • How to Get the Best Results from Your AI Chatbot
        • Using embedding in AI
  • Users
    • Live Chat
      • Add New User
      • How to stop automation
      • AI Reply Assist for Live Agent
      • Assign Collaborator
    • Bot User
      • Bulk Import Users
  • Bot Automation
    • Keywords
    • Triggers
  • Contents
    • Create Custom user field & Usage
    • Tagging and Labelling
      • Creating Tags for Users
  • Tools
    • Error Logs
    • Tester
    • Admins
    • Quick Reply/Shortcut Reply
  • Broadcasting
    • General broadcast / Blasting
      • Creating WhatsApp Message Template for WhatsApp Official
  • Easy Guide to Build Chatbot
    • Premium Template
      • FAQ
      • Persuasion AI
        • Insert Info (Persuasion AI)
    • Recording AI Performance and Reporting
    • Notifying Group
      • Telegram Group
    • Intent (Yes/No) AI
  • Self onboarding
    • Self-Onboarding Guide
      • 1. Getting Started
      • 2. API and Integration Setup
      • 3. Integrating External Services
      • 4. Bot Configuration and Setup
      • 5. Finalizing Setup and Support
    • Basic AI Chatbot Tutorial
      • 1. Choosing Channel
      • 2. Creating a New Bot
      • 3. Installing Template
      • 4. Edit Template
      • 5. Getting AI API Key
      • 6. Testing the AI
  • Channel-Specific Automation Guide
    • Facebook
      • Facebook Post Comment Capture
      • How to Change Conversation Starter Message in Facebook Messenger (via Chatku AI)
  • Miscellaneous
    • Mampu AI Basement Parking
    • WHATSAPP ULTIMATE GUIDE
      • How to request for review to unban their account
      • How to warm up WhatsApp account
      • How to delete WhatsApp Account
Powered by GitBook

@ 2024 Mampu AI

On this page
  • 1. Embed Headings in Answers
  • Alternative tools
  • 2. Use Clear and Concise Language
  • 3. Structure Your Information
  • 4. Provide Comprehensive Answers
  • 5. Use Relevant Keywords

Was this helpful?

  1. Artificial Intelligence
  2. OpenAI | ChatGPT
  3. FAQ AI (Embedding)

How to Get the Best Results from Your AI Chatbot

PreviousIncluding MediaNextUsing embedding in AI

Last updated 11 months ago

Was this helpful?

To ensure your AI chatbot provides the most accurate and helpful responses, follow these guidelines:

1. Embed Headings in Answers

Embedding the heading (question) within the text (answer) helps the AI understand the context better and provides more relevant responses.

Example:

  • Heading: What is your price?

  • Text: What is your price?, SME AI Pro Package USD 99 / Month. SME AI Premium Package USD 249 / Month.

By repeating the question within the answer, the AI can better match user queries with the correct information.

Alternative tools

Also, Excel provided a function so that you not need to insert the question one by one into the answer. Follow below guide:

  1. Open excel file

  2. File -> Option -> Custom ribbon

  3. Tick "Developer" on the right panel

  4. Press "OK" button

  5. Developer tab -> Visual Basic (Alt + F11)

  6. Insert -> Module

  7. Paste the code prepared

  8. Replace the Sheet Name

  9. Close it

  10. Macros (Alt + F8)

  11. Choose the module you created

  12. Run

  13. Heading will be add into text field.

Visual Basic's code:

Sub MoveHeadingToText()
Dim ws As Worksheet
Dim lastRow As Long
Dim i As Long
Dim heading As String
Dim text As String

' Set the worksheet
Set ws = ThisWorkbook.Sheets("Sheet1") ' Change "Sheet1" to the name of your sheet

' Find the last row with data in column B (Heading)
lastRow = ws.Cells(ws.Rows.Count, "B").End(xlUp).Row

' Loop through each row and update the Text column
For i = 2 To lastRow ' Assuming the data starts from row 2
    heading = ws.Cells(i, 2).Value
    text = ws.Cells(i, 3).Value

    ' Trim any leading/trailing spaces or line breaks from the Heading
    heading = Trim(Replace(Replace(Replace(heading, vbCrLf, " "), vbLf, " "), vbCr, " "))

    ' Prepend the Heading to the Text with a comma and a space
    ws.Cells(i, 3).Value = heading & ", " & text
Next i

End Sub

2. Use Clear and Concise Language

Keep your language simple and direct. Avoid jargon or overly complex sentences.

  • Less Effective: "We provide a plethora of options for your perusal."

  • More Effective: "We offer many options for you to choose from."

3. Structure Your Information

Organize your content with headings, bullet points, and numbered lists to make it easier for the AI to parse.

  • Unstructured: "Our services include web development, mobile app development, and digital marketing."

  • Structured:

    • Services:

      • Web development

      • Mobile app development

      • Digital marketing

4. Provide Comprehensive Answers

Ensure your answers are thorough and cover all aspects of the question.

  • Incomplete: "Our office hours are 9 AM to 5 PM."

  • Complete: "Our office hours are 9 AM to 5 PM, Monday to Friday. We are closed on weekends and public holidays."

5. Use Relevant Keywords

Incorporate relevant keywords naturally within the text to help the AI match questions to answers more effectively.

  • Without Keywords: "Our support team is available 24/7."

  • With Keywords: "Our customer support team is available 24/7 to assist with any queries or issues you may have."