DEV Community

Cover image for How to Avoid AI Hallucinations with ChatGPT
Thomas Hansen
Thomas Hansen

Posted on • Originally published at ainiro.io

How to Avoid AI Hallucinations with ChatGPT

Tage wrote about how to prevent ChatGPT from hallucinating a couple of months ago. However, I wanted to dive deeply into one specific thing you can do to completely avoid AI hallucinations. Before I explain how to avoid hallucinations, I need to explain a little bit what we do when we create a custom ChatGPT chatbot.

What we do is basically prompt engineering based upon an SQL database with VSS capabilities. It could be argued that we basically jailbreak ChatGPT, but instead of allowing ChatGPT to go completely berserk, we significantly restrict its capabilities to only be able to answer questions related to the data found in our SQL database. To understand the process, it helps to create your own custom chatbot, something you can do below.

Our website scraper

If you look carefully at the process of creating a chatbot, you will see that it starts out by crawling and scraping your website. Below is a screenshot that was created as we crawled HubSpot.

ChatGPT chatbot scraper

As it crawls your URL it chops up your website into "training snippets". This implies creating one training snippet for each image found at your pages, and one training snippet for each "section" it finds on your pages. One section is typically an Hx element, coupled with all paragraphs below it. Each of these snippets are then inserted into an SQL database. Read more about our scraper below.

Below is a screenshot from our Magic Dashboard showing one such training snippet. Notice, the training snippet below is shown in "preview mode", but we also have raw mode where you can edit the content of each individual training snippet. Since training snippets are basically Markdown, this allows you to reference images, hyperlinks, and create lists and such that becomes an integrated part of the chatbot experience.

Example training snippet for our chatbot

Notice, when you create a free demo chatbot our crawler will only scrape a maximum of 25 pages. If you've got more pages it will simply ignore these, and only scrape the 25 first pages ordered by the length of the URL. The latter tends to result in more important pages being prioritised, since pages that are important typically have URLs such as "/about" while less important pages typically have much longer URLs.

VSS database

When our crawler have scraped everything it will "vectorise" each of the training snippets it created during crawling and scraping. Vectorising training snippets again is using OpenAI's embeddings API, creating a 1,520 dimensional vector describing the "trajectory" of each of these training snippets, which again can be used as we do AI search through your VSS/SQL database later.

Later when the user phrases a question, we create a similar "vector" of the question, which allows us to calculate the "distance" between the question and each training snippet found in the SQL database as the backend tries to match questions towards your training data. Once we've got a vector for the question and one vector for each training snippet, the rest is just simple linear algebra, typically taught in high school or university. Most of the math behind this have been known since the days of Pythagoras in fact ...

This allows us to match your training snippets towards questions asked, resulting in that we know that the training data we end up with is somehow related to the question the user asks. The matched training snippets again are concatenated into a single string, and sent to OpenAI, together with the question - While "instructing" ChatGPT to answer the specified question using nothing but the training snippets we provided. We refer to one such bulk of training snippets as "context", because it provides ChatGPT with context required to answer the question it is being asked.

In fact, we don't ask ChatGPT to answer questions, we already know the answer. We simply ask ChatGPT to "transpile" the answer we already have into sentences and phrases that makes sense according to the question the user asks

I am 100% confident in that there are multiple 42 jokes in the above section ๐Ÿ˜‚

How to avoid AI hallucinations

At this point the experienced reader probably already knows how to avoid AI hallucinations without me even having to tell you, but it's basically as easy as adding an instruction to ChatGPT that says something resembling the following:

If you cannot find the answer to my question in the specified context, answer me; "I am sorry, but I don't know the answer, can you provide some keywords please?"

Literally, it's that easy. We simply politely tell ChatGPT to not answer unless the context which is created from our training data contains the answer. Something you can see from the screenshot below, where I ask our own chatbot how to cook spaghetti. As you can see it refuses to answer me, because our training data does not contain information related to cooking spaghetti.

Our chatbot refusing to answer how to cook Spaghetti

The point of the above being that if you asked ChatGPT about how to cook Spaghetti it would happily provide you with hundreds of different recipes. So basically it could be argued that our job is as follows.

We dumb down ChatGPT and teach it additional things, resulting in that it knows nothing outside of the scope of what we teach it.

This of course have the benefit of making ChatGPT know everything about whatever subject you want it to know something about, while knowing nothing about anything else. Which eliminates AI hallucinations 100% perfectly, resulting in that ChatGPT couldn't hallucinate, not even in theory, regardless of what you ask it ...

Conclusion

To eliminate AI hallcuinations you need the following:

  1. A VSS database with "training data"
  2. The ability to match questions towards your training snippets using OpenAI's embeddings API
  3. Prompt engineer ChatGPT using instructions such that it refuses to answer unless the context provides the answer

And that's really it. So when others tells me that "AI hallucinations are probably impossible to solve", I tend to laugh, regardless of who that person is. I've seen several interviews with Sam Altman for instance where he claims AI hallucinations cannot be fixed. Well, we fixed them, 6 months ago Sam ... ๐Ÿ˜‰

Sorry Sam, no hallucinations here ๐Ÿ˜‚

Top comments (0)