One-click install
npx skills add https://github.com/zilliztech/milvus-marketplace --skill rag-zilliztech
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: rag
Source: https://github.com/zilliztech/milvus-marketplace/tree/main/plugins/rag-toolkit/skills/rag
Command: npx skills add https://github.com/zilliztech/milvus-marketplace --skill rag-zilliztech

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Grounds LLM answers in a document corpus to reduce hallucinations and keep knowledge up-to-date with cited sources.

Core Features & Use Cases

  • Document-grounded Q&A: Answer questions by referencing your documents, manuals, policies, and product guides.
  • Knowledge-base with citations: Build searchable knowledge bases where each answer cites the originating chunks.
  • Enterprise chat with docs: Enable chatbots to answer using your organization's documents with traceable sources and context.

Quick Start

Use the rag skill to create a retrieval-augmented Q&A system over your documents. Ingest your documents, query with a question, and receive an answer citing relevant sources from the retrieved chunks.

Frequently Asked Questions about rag

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I reduce hallucinations in LLM answers using documents?

Retrieval-augmented generation grounds LLM responses in your document corpus by retrieving relevant chunks and generating answers cited to specific sources, reducing hallucinations and keeping answers factual and up-to-date.

How do I build a searchable knowledge base with source citations?

Ingest your documents into a vector store, embed them for semantic search, retrieve relevant chunks for each query, and have the LLM generate answers that cite the originating document sections, creating a traceable knowledge base.

Can I use embeddings and vector search to answer questions over multiple documents?

Yes. Vector search retrieves semantically similar chunks across your document corpus, and multi-source aggregation combines retrieved results so the LLM generates answers that reference and attribute information to specific documents.

What do I need to set up before implementing document Q&A?

You need a vector store for storage and retrieval, an embedding model to vectorize documents and queries, an LLM for answer generation, and your documents prepared in a format the ingestion pipeline can process.

How does retrieval-augmented generation differ from using an LLM alone?

RAG retrieves relevant document chunks before generation, anchoring answers to your corpus with citations. This prevents hallucinations and keeps responses current, unlike LLMs relying solely on training data without source verification.

What are the limitations of building enterprise chat with documents?

Retrieval quality depends on embedding model and vector store performance; large document sets require efficient indexing; answer quality is limited by retrieved chunk relevance and LLM reasoning over multi-source contexts.