What problem does it solve? Building LLM-powered applications requires wiring together model providers, tools, memory, document retrieval, and observability from scratch. This Skill provides working patterns for LangChain so you can assemble agents, RAG pipelines, and chatbots without reinventing integration boilerplate. ## Core Features & Use Cases - Agent Construction: Create ReAct and tool-calling agents with parallel tool execution, streaming, error handling, and structured output in under ten lines of code. - RAG Pipelines: Load documents from web, PDF, or GitHub, split them into chunks, embed them into Chroma, FAISS, or Pinecone, and run retrieval QA with source citations and conversational memory. - Provider Flexibility: Swap between OpenAI, Anthropic, Google, and local Ollama models with a single class change, plus LangSmith tracing for debugging and cost monitoring. - Use Case: Build a documentation chatbot that ingests your product docs into a vector store, answers user questions with cited sources, and remembers conversation context across turns. ## Quick Start Ask the AI to create a LangChain agent with a calculator and web search tool using the Anthropic model, then run a sample query against it.