Spaces:
Runtime error
Runtime error
File size: 14,722 Bytes
8153c79 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 | {
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Build a Simple RAG Chatbot with LangChain, ChromaDB & Gradio\n",
"\n",
"This notebook walks you through building a **Retrieval-Augmented Generation (RAG)** chatbot from scratch. \n",
"We'll scrape **one webpage**, chunk it, embed it into a vector store, hook up a small **HuggingFace LLM**, and serve it all through a **Gradio** chat UI.\n",
"\n",
"### What is RAG?\n",
"RAG = **Retrieve** relevant documents β **Augment** the prompt with them β **Generate** an answer. \n",
"This lets an LLM answer questions about content it was never trained on."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"---\n",
"## Step 1: Install Dependencies"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"!pip install -q langchain langchain-community langchain-chroma langchain-huggingface \\\n",
" langchain-text-splitters chromadb sentence-transformers \\\n",
" beautifulsoup4 gradio huggingface_hub"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"---\n",
"## Step 2: Imports"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"import os\n",
"import re\n",
"import gradio as gr\n",
"\n",
"from langchain_community.document_loaders import WebBaseLoader\n",
"from langchain_text_splitters import RecursiveCharacterTextSplitter\n",
"from langchain_huggingface import HuggingFaceEmbeddings, HuggingFaceEndpoint\n",
"from langchain_chroma import Chroma\n",
"from langchain_core.prompts import ChatPromptTemplate, MessagesPlaceholder\n",
"from langchain.chains.combine_documents import create_stuff_documents_chain\n",
"from langchain.chains.retrieval import create_retrieval_chain\n",
"from langchain_core.messages import HumanMessage, AIMessage"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"---\n",
"## Step 3: Set Your HuggingFace Token\n",
"\n",
"We'll use the **HuggingFace Inference API** to run a small LLM without needing a GPU locally. \n",
"Get a free token at https://huggingface.co/settings/tokens"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# Paste your HuggingFace token here\n",
"os.environ[\"HF_TOKEN\"] = \"hf_...\"\n",
"os.environ[\"USER_AGENT\"] = \"rag-tutorial\""
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"---\n",
"## Step 4: Scrape a Webpage\n",
"\n",
"We use LangChain's `WebBaseLoader` to fetch and parse HTML from a single URL. \n",
"This gives us `Document` objects with the page text and metadata (source URL)."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"URL = \"https://aisviz.gitbook.io/documentation\"\n",
"\n",
"loader = WebBaseLoader(URL)\n",
"raw_docs = loader.load()\n",
"\n",
"print(f\"Loaded {len(raw_docs)} document(s)\")\n",
"print(f\"Character count: {len(raw_docs[0].page_content)}\")\n",
"print(f\"\\nFirst 500 chars:\\n{raw_docs[0].page_content[:500]}\")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"---\n",
"## Step 5: Clean the Text\n",
"\n",
"Web-scraped text is often messy β control characters, excessive whitespace, etc. \n",
"A quick clean-up keeps our chunks meaningful."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"def clean_text(text: str) -> str:\n",
" \"\"\"Remove control characters and normalize whitespace while preserving structure.\"\"\"\n",
" # Remove control characters but keep newlines and tabs\n",
" text = re.sub(r\"[\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f]\", \"\", text)\n",
" # Normalize line endings\n",
" text = text.replace(\"\\r\\n\", \"\\n\").replace(\"\\r\", \"\\n\")\n",
" # Collapse excessive newlines (3+ β 2)\n",
" text = re.sub(r\"\\n{3,}\", \"\\n\\n\", text)\n",
" # Collapse excessive spaces\n",
" text = re.sub(r\" {3,}\", \" \", text)\n",
" return text.strip()\n",
"\n",
"\n",
"for doc in raw_docs:\n",
" doc.page_content = clean_text(doc.page_content)\n",
"\n",
"print(f\"Cleaned character count: {len(raw_docs[0].page_content)}\")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"---\n",
"## Step 6: Chunk the Documents\n",
"\n",
"LLMs have limited context windows, and embeddings work best on focused passages. \n",
"We split documents into overlapping chunks so that no context is lost at boundaries.\n",
"\n",
"- **chunk_size**: max characters per chunk \n",
"- **chunk_overlap**: characters shared between consecutive chunks \n",
"- **separators**: split boundaries in priority order (paragraphs β lines β sentences β words)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"splitter = RecursiveCharacterTextSplitter(\n",
" chunk_size=768,\n",
" chunk_overlap=100,\n",
" separators=[\"\\n\\n\", \"\\n\", \". \", \" \", \"\"],\n",
")\n",
"\n",
"chunks = splitter.split_documents(raw_docs)\n",
"\n",
"print(f\"Split into {len(chunks)} chunks\")\n",
"print(f\"\\n--- Chunk 0 ---\\n{chunks[0].page_content[:300]}...\")\n",
"print(f\"\\n--- Chunk 1 ---\\n{chunks[1].page_content[:300]}...\")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"---\n",
"## Step 7: Create Embeddings & Store in ChromaDB\n",
"\n",
"We convert each chunk into a **vector embedding** β a numerical representation of its meaning. \n",
"ChromaDB stores these vectors and lets us find the most relevant chunks for any query.\n",
"\n",
"We use `all-MiniLM-L6-v2` β a small, fast embedding model (80 MB)."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"embeddings = HuggingFaceEmbeddings(\n",
" model_name=\"sentence-transformers/all-MiniLM-L6-v2\",\n",
" model_kwargs={\"device\": \"cpu\"},\n",
")\n",
"\n",
"vectorstore = Chroma.from_documents(\n",
" documents=chunks,\n",
" embedding=embeddings,\n",
" # persist_directory=\"./chroma_db\", # uncomment to save to disk\n",
")\n",
"\n",
"print(f\"Stored {vectorstore._collection.count()} vectors in ChromaDB\")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Quick test β similarity search\n",
"\n",
"Let's verify our vector store works by querying it directly."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"results = vectorstore.similarity_search(\"What is AISdb?\", k=3)\n",
"\n",
"for i, doc in enumerate(results):\n",
" print(f\"\\n--- Result {i+1} ---\")\n",
" print(doc.page_content[:200])"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"---\n",
"## Step 8: Set Up the Retriever\n",
"\n",
"A **retriever** wraps the vector store with a standard interface. \n",
"`k=5` means we'll fetch the top 5 most relevant chunks for each question."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"retriever = vectorstore.as_retriever(search_kwargs={\"k\": 5})"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"---\n",
"## Step 9: Set Up the LLM\n",
"\n",
"We use `HuggingFaceEndpoint` to call a small model via the **free Inference API**. \n",
"No GPU needed β the model runs on HuggingFace's servers.\n",
"\n",
"`HuggingFaceTB/SmolLM2-1.7B-Instruct` is a capable small model (~1.7B params)."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"llm = HuggingFaceEndpoint(\n",
" repo_id=\"HuggingFaceTB/SmolLM2-1.7B-Instruct\",\n",
" temperature=0.3,\n",
" max_new_tokens=512,\n",
")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"---\n",
"## Step 10: Build the RAG Chain\n",
"\n",
"This is the core of the chatbot. The chain:\n",
"\n",
"1. Takes the user's question \n",
"2. Retrieves relevant document chunks from ChromaDB \n",
"3. Passes both the question and the context to the LLM \n",
"4. Returns the generated answer \n",
"\n",
"The **system prompt** tells the LLM to answer only from the provided context."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"system_prompt = \"\"\"You are a helpful assistant that answers questions based on the provided context.\n",
"Use ONLY the context below to answer. If the context doesn't contain the answer, say\n",
"\"I don't have enough information to answer that.\"\n",
"\n",
"Context:\n",
"{context}\"\"\"\n",
"\n",
"prompt = ChatPromptTemplate.from_messages([\n",
" (\"system\", system_prompt),\n",
" MessagesPlaceholder(\"chat_history\"),\n",
" (\"human\", \"{input}\"),\n",
"])\n",
"\n",
"# Combine retrieved docs into the prompt\n",
"question_answer_chain = create_stuff_documents_chain(llm, prompt)\n",
"\n",
"# Wire up retriever + QA chain\n",
"rag_chain = create_retrieval_chain(retriever, question_answer_chain)\n",
"\n",
"print(\"RAG chain ready!\")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Quick test β ask a question"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"response = rag_chain.invoke({\n",
" \"input\": \"What is AISdb?\",\n",
" \"chat_history\": [],\n",
"})\n",
"\n",
"print(response[\"answer\"])"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"---\n",
"## Step 11: Add Chat History\n",
"\n",
"A real chatbot remembers previous messages. We store the conversation as a list of \n",
"`HumanMessage` / `AIMessage` objects and pass them into each call."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"chat_history = [] # stores LangChain message objects\n",
"\n",
"\n",
"def ask(question: str) -> str:\n",
" \"\"\"Send a question to the RAG chain with chat history.\"\"\"\n",
" response = rag_chain.invoke({\n",
" \"input\": question,\n",
" \"chat_history\": chat_history,\n",
" })\n",
" answer = response[\"answer\"]\n",
"\n",
" # Append to history so the next call has context\n",
" chat_history.append(HumanMessage(content=question))\n",
" chat_history.append(AIMessage(content=answer))\n",
"\n",
" return answer\n",
"\n",
"\n",
"# Test multi-turn conversation\n",
"print(ask(\"What is AISdb?\"))\n",
"print(\"---\")\n",
"print(ask(\"What can it do?\")) # \"it\" should refer to AISdb from context"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"---\n",
"## Step 12: Build the Gradio Chat UI\n",
"\n",
"Finally, let's wrap everything in a Gradio `ChatInterface`. \n",
"This gives us a polished chat window with message history, a text box, and a send button β in ~15 lines of code."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"def respond(message, history):\n",
" \"\"\"Gradio chat callback. `history` is a list of {role, content} dicts.\"\"\"\n",
" # Convert Gradio history β LangChain messages\n",
" lc_history = []\n",
" for msg in history:\n",
" if msg[\"role\"] == \"user\":\n",
" lc_history.append(HumanMessage(content=msg[\"content\"]))\n",
" else:\n",
" lc_history.append(AIMessage(content=msg[\"content\"]))\n",
"\n",
" response = rag_chain.invoke({\n",
" \"input\": message,\n",
" \"chat_history\": lc_history,\n",
" })\n",
"\n",
" return response[\"answer\"]\n",
"\n",
"\n",
"demo = gr.ChatInterface(\n",
" fn=respond,\n",
" type=\"messages\",\n",
" title=\"RAG Chatbot\",\n",
" description=\"Ask me anything about the documentation! Powered by a small HuggingFace LLM + ChromaDB.\",\n",
" examples=[\n",
" \"What is AISdb?\",\n",
" \"How do I get started?\",\n",
" \"What features does it have?\",\n",
" ],\n",
" theme=gr.themes.Soft(),\n",
")\n",
"\n",
"demo.launch()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"---\n",
"## Recap\n",
"\n",
"Here's everything we built in this notebook:\n",
"\n",
"| Step | What | Tool |\n",
"|------|------|------|\n",
"| 1 | Scraped a webpage | `WebBaseLoader` |\n",
"| 2 | Cleaned the text | Regex |\n",
"| 3 | Chunked into passages | `RecursiveCharacterTextSplitter` |\n",
"| 4 | Embedded & stored vectors | `HuggingFaceEmbeddings` + `ChromaDB` |\n",
"| 5 | Connected a small LLM | `HuggingFaceEndpoint` (SmolLM2 1.7B) |\n",
"| 6 | Built a RAG chain | LangChain `create_retrieval_chain` |\n",
"| 7 | Added chat history | `HumanMessage` / `AIMessage` list |\n",
"| 8 | Served with a chat UI | Gradio `ChatInterface` |\n",
"\n",
"### Next Steps\n",
"- Scrape **multiple URLs** to expand the knowledge base\n",
"- **Persist** ChromaDB to disk so you don't re-embed on every restart\n",
"- Add a **history-aware retriever** that rewrites questions using prior context\n",
"- Swap in a **larger LLM** (Gemini, GPT, Claude) for better answers\n",
"- Deploy to **HuggingFace Spaces** for free hosting"
]
}
],
"metadata": {
"kernelspec": {
"display_name": ".venv",
"language": "python",
"name": "python3"
},
"language_info": {
"name": "python",
"version": "3.12.3"
}
},
"nbformat": 4,
"nbformat_minor": 4
}
|