I Built an AWS Well-Architected Chatbot with ChatGPT. Here's How I Approached It
Tips and guidance for building a ChatGPT chatbot.

- Data Collection
- Creating Text Embeddings
- Prompt Engineering
- Creating the Chat Interface
Selenium
and BeautifulSoup
to methodically scrape content from the entire Well-Architected Framework page. To ensure comprehensive data extraction, I meticulously examined every section on the main page, as well as followed and scraped all associated links found in the sidebar. As a result, I captured the complete content and compiled it into a CSV file, along with the corresponding titles and URLs for easy reference and citation.
OpenAI's embeddings API.
- Search (where results are ranked by relevance to a query string)
- Clustering (where text strings are grouped by similarity)
- Recommendations (where items with related text strings are recommended)
- Anomaly detection (where outliers with little relatedness are identified)
- Diversity measurement (where similarity distributions are analyzed)
- Classification (where text strings are classified by their most similar label)

How do I design VPC architectures with security components?
we get a list of the documents that has text which is relevant to the query.
get_answer_from_chatgpt()
function is called to get a response from the ChatGPT and the referenced documents.Any opinions in this post are those of the individual author and may not reflect the opinions of AWS.