Built CareSage, a Retrieval-Augmented Generation (RAG) medical chatbot that answers user questions using knowledge pulled from PDF documents instead of guessing. The app ingests PDFs with PyPDF, chunks and embeds content using sentence-transformers, stores vectors in Pinecone, and retrieves the most relevant passages at query time. A LangChain pipeline then combines the retrieved context with an OpenAI LLM to generate grounded, helpful responses.