Official OpenAI plugin with OpenAPI schema for semantic search and retrieval-augmented generation (RAG) over personal or organizational documents.
Add this skill
npx mdskills install openai/chatgpt-retrieval-pluginDocumentation for an OpenAPI plugin, not actionable agent instructions or executable skill content
1# ChatGPT Retrieval Plugin23The official OpenAI retrieval plugin for ChatGPT. Provides an OpenAPI schema that enables semantic search over your documents.45## How It Works671. **Upsert** documents into a vector database82. **Query** with natural language via ChatGPT93. **Retrieve** semantically relevant chunks104. ChatGPT uses the results for grounded responses1112## Supported Vector DBs1314- Pinecone15- Weaviate16- Milvus17- Qdrant18- Redis19- Chroma20- And more...2122## OpenAPI Schema2324The plugin exposes these endpoints:25- `POST /upsert` — Add documents26- `POST /query` — Semantic search27- `DELETE /delete` — Remove documents2829## Setup3031```bash32git clone https://github.com/openai/chatgpt-retrieval-plugin33pip install -r requirements.txt34# Configure your vector DB and API keys35python main.py36```37
Full transparency — inspect the skill content before installing.