Skip to main content
Back to the directory
langchain-ai/langchain-skillsSoftware EngineeringFrontend and Design

langchain-rag

Complete RAG pipeline for document ingestion, embedding, retrieval, and LLM-powered response generation.

SkillJury keeps community verdicts, source metadata, and external repository signals in separate lanes so ranking data never pretends to be a review.

SkillJury verdict
Pending

No approved reviews yet

Would recommend
Pending

Waiting on enough review volume

Install signal
5

Weekly or total install activity from catalog data

Sign in to review
0 review requests
Install command
npx skills add https://github.com/langchain-ai/langchain-skills --skill langchain-rag
SkillJury does not have enough approved reviews to publish a community verdict yet. Source metadata and repository proof are still available above.
SkillJury Signal Summary

As of Apr 30, 2026, langchain-rag has 5 weekly installs, 0 community reviews on SkillJury. Community votes currently stand at 0 upvotes and 0 downvotes. Source: langchain-ai/langchain-skills. Canonical URL: https://skills.sh/langchain-ai/langchain-skills/langchain-rag.

Security audits
Gen Agent Trust HubPASS
SocketWARN
SnykWARN
About this skill
Complete RAG pipeline for document ingestion, embedding, retrieval, and LLM-powered response generation. Pipeline: Key Components: docs = [ Document(page_content="LangChain is a framework for LLM apps.", metadata={}), Document(page_content="RAG = Retrieval Augmented Generation.", metadata={}), ] splitter = RecursiveCharacterTextSplitter(chunk_size=500, chunk_overlap=50) splits = splitter.split_documents(docs) embeddings = OpenAIEmbeddings(model="text-embedding-3-small") vectorstore = InMemoryVectorStore.from_documents(splits, embeddings) retriever = vectorstore.as_retriever(search_kwargs={"k": 4}) model = ChatOpenAI(model="gpt-4.1") query = "What is RAG?" relevant_docs = retriever.invoke(query) context = "\n\n".join([doc.page_content for doc in relevant_docs]) response = model.invoke([ {"role": "system", "content": f"Use this context:\n\n{context}"}, {"role": "user", "content": query}, ]) loader = PyPDFLoader("./document.pdf") docs = loader.load() print(f"Loaded {len(docs)} pages") loader = WebBaseLoader(" ") docs = loader.load() loader = DirectoryLoader( "path/to/documents", glob="**/*.txt", # Pattern for files to load loader_cls=TextLoader ) docs = loader.load() vectorstore = Chroma.from_documents( documents=splits, embedding=OpenAIEmbeddings(), persist_directory="./chroma_db", collection_name="my-collection", ) vectorstore = Chroma( persist_directory="./chroma_db",...

Source description provided by the upstream listing. Community review signal and install context stay separate from this narrative layer.

Community reviews

Latest reviews

No community reviews yet. Be the first to review.

Browse this skill in context
FAQ
What does langchain-rag do?

Complete RAG pipeline for document ingestion, embedding, retrieval, and LLM-powered response generation.

Is langchain-rag good?

langchain-rag does not have approved reviews yet, so SkillJury cannot publish a community verdict.

Which AI agents support langchain-rag?

langchain-rag currently lists compatibility with Codex, Skills CLI.

Is langchain-rag safe to install?

langchain-rag has been scanned by security audit providers tracked on SkillJury. Check the security audits section on this page for detailed results from Socket.dev and Snyk.

What are alternatives to langchain-rag?

Skills in the same category include grimoire-morpho-blue, conversation-memory, second-brain-ingest, zai-tts.

How do I install langchain-rag?

Run the following command to install langchain-rag: npx skills add https://github.com/langchain-ai/langchain-skills --skill langchain-rag

Related skills

More from langchain-ai/langchain-skills

Related skills

Alternatives in Software Engineering