Welcome to Gen-AI

👋 Hi, this is Sai Boorlagadda. I’m documenting all my learnings in applying Gen AI in real world applications in this blog. Besides, I’m currently leading Gen AI strategy at Rivian and designed end-to-end solution for over-the-air (OTA) software updates for Rivian’s EVs.

Deep Dive: Keyword Search

Conventional keyword search matches user query words to document words using an inverted index data structure for efficient matching and ranking by relevancy.

March 15, 2024 Â· Sai

Building RAG: All things retrieval

Vector searches have proven to be useful for handling free-text queries, as opposed to the traditional keyword-based search. However, developing a vector search based on word embeddings from a pre-trained model has limitations when it comes to adapting to custom domains. While keyword search can adapt to new domains they are inherently unsuitable for free-text query. How can we combine both these and implement an hybrid search?

March 2, 2024 Â· Sai

Revolutionizing Question-and-Answer Systems

LLMs revolutionize question-and-answer systems with exceptional language understanding and creative writing skills. Lossy compression during training may make retrieving information challenging. Leveraging LLMs’ language expertise transforms building question-and-answer systems into reading comprehension using their ability to comprehend text, forming the basis for RAG systems that shift question answering to efficient knowledge base searches.

February 25, 2024 Â· Sai