

AWS Docs GPT
AI-powered Search & Chat for AWS Documentation.
Cost / License
- Free
- Open Source
Platforms
- Online
- Self-Hosted

AWS Docs GPT
Features
- AI-Powered
Tags
- Documentation
- amazon-web-services
- GPT-3
- aws
- Artificial intelligence
- GPT
AWS Docs GPT News & Activities
Recent activities
AWS Docs GPT information
What is AWS Docs GPT?
AI-powered search and chat for AWS Documentation.
AWS Docs GPT provides 2 things:
- A search interface.
- A chat interface.
Search
Search was created with OpenAI Embeddings (text-embedding-ada-002). First, we loop over the documentation urls and generate embeddings for each chunk of text in the page.
Then in the app we take the user's search query, generate an embedding, and use the result to find the pages that contain similar content
The comparison is done using cosine similarity across our database of vectors. Results are then ranked by similarity score and returned to the user.
Chat
Chat builds on top of search. It uses search results to create a prompt that is fed into GPT-3.5-turbo. This allows for a chat-like experience where the user can ask questions about AWS documentation and get answers.
