We have all been blown away by ChatGPT. In fact, you’re probably wondering if I wrote this guide or if GPT wrote it for me.
Unfortunately, GPT has yet to distill my winning personality, so I've had to do this the old-school way.
Below, I’ll take you through how you can build your own conversational Q&A widget that is trained on your knowledge base.
By the end, you’ll get all of this for free:
The beauty of it all is that these pieces can be easily tweaked to fit your specific needs. So let's dive in!
Start by setting up a default Nuxt 3 repo.
We’re going to style this app with TailwindCSS. To do this, I installed the Nuxt Tailwind module and then added it to my nuxt.config.ts
:
export default defineNuxtConfig({
modules: ['@nuxtjs/tailwindcss']
})