DEV Community

Cover image for From Basic to Custom: AI Chatbot Building 101
Kaylynn for Focused

Posted on • Edited on

8 3 3 3 3

From Basic to Custom: AI Chatbot Building 101

AI Custom Chatbot Quickstart

To get started leveling up your custom AI chatbot, check out our GitHub repository here.

Domain specific AI chatbots are powerful applications that can be used in many use cases:

  • Virtual Assistants
  • Knowledge retrieval
  • Text synthesis
  • Text formatting
  • Sentiment analysis

Building AI chatbot apps is easy. Customizing is hard.

This ready-to-go sample project shows you how to build a custom chatbot using our preferred LLM tech stack:

We are leveraging Retrieval Augmented Generation (RAG).

The goal of this tutorial is to demonstrate the basics.

  • Demonstrate how to add custom data to an LLM model (we're using OpenAI's gpt-3.5-turbo)
  • Demonstrate a conversational memory LLM chatbot
  • Demonstrate using agents and tools with the Langchain Framework

Technical Objectives

  • Ingest data into a vector database
  • Query the vector database
  • Query an agent that decides whether to query the vector database

Here’s a peak at the components of a basic AI custom chatbot.

Architecture Overview

For more resources: check out our other blog posts on AI.

Image of Datadog

The Future of AI, LLMs, and Observability on Google Cloud

Datadog sat down with Google’s Director of AI to discuss the current and future states of AI, ML, and LLMs on Google Cloud. Discover 7 key insights for technical leaders, covering everything from upskilling teams to observability best practices

Learn More

Top comments (0)

Postmark Image

Speedy emails, satisfied customers

Are delayed transactional emails costing you user satisfaction? Postmark delivers your emails almost instantly, keeping your customers happy and connected.

Sign up

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay