wiki-embed-qdrant

Embeds wiki chunks as 768-dim Gemini vectors into Qdrant Cloud via embed_chunks.py script.

2|1|Updated Mar 18, 2026
One-click install
npx skills add https://github.com/cdeistopened/skill-stack-skills --skill wiki-embed-qdrant
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: wiki-embed-qdrant
Source: https://github.com/cdeistopened/skill-stack-skills/tree/main/wiki-pipeline/wiki-embed-qdrant
Command: npx skills add https://github.com/cdeistopened/skill-stack-skills --skill wiki-embed-qdrant

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill enables you to index wiki content into a Qdrant Cloud vector store so your RAG backend can perform fast semantic search over wiki chunks.

Core Features & Use Cases

  • Embed semantic chunks using Gemini to generate 768-dim vectors.
  • Upsert embeddings into a Qdrant Cloud collection for production search and Q&A.
  • Automatically resume from the last processed chunk to handle interruptions in long-running jobs.

Quick Start

Run the embed_chunks.py script for your wiki to upsert all chunks into the Qdrant Cloud collection.

Frequently Asked Questions about wiki-embed-qdrant

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

FAQPage Schema
How do I embed wiki chunks into Qdrant for a RAG backend?

To embed wiki chunks into a Qdrant collection, this skill converts semantic chunks into 768-dim Gemini embeddings and upserts them for fast retrieval. You run the embed_chunks.py script after configuring your Gemini and Qdrant credentials.

What's the best way to index wiki content for semantic search in Qdrant Cloud?

Indexing wiki content for semantic search in Qdrant Cloud involves generating Gemini vector embeddings from text chunks and upserting them into a collection. This skill automates that pipeline, including batch processing to handle large volumes efficiently.

Do I need Gemini and Qdrant credentials to generate vector embeddings for wiki text?

Yes, you need both Gemini and Qdrant credentials to generate vector embeddings for wiki text. Gemini provides the 768-dimensional embedding generation, while Qdrant Cloud hosts the collection where these embeddings are upserted for retrieval.

Can I resume vector embedding jobs in Qdrant if the process gets interrupted?

Yes, you can resume vector embedding jobs in Qdrant if interrupted. This skill automatically resumes from the last processed chunk, ensuring long-running batch embedding jobs recover without duplicating previously upserted data.

How does semantic chunking work with Gemini embeddings for a production RAG backend?

Semantic chunking with Gemini embeddings splits wiki content into meaningful segments, converts them to 768-dimensional vectors, and upserts them into Qdrant. This allows a production RAG backend to perform fast semantic search over the wiki knowledge base.

What Python dependencies are required to upsert Gemini embeddings into Qdrant Cloud?

Upserting Gemini embeddings into Qdrant Cloud requires specific Python dependencies to handle API connections and batch processing. You must install these dependencies alongside configuring your Gemini and Qdrant credentials before running the embedding script.