Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@

A Payload CMS plugin that adds vector search capabilities to your collections. Perfect for building RAG (Retrieval-Augmented Generation) applications and semantic search features.

> **Status:** `0.x` — pre-1.0. The public API is stabilizing but may still have breaking changes between minor releases. Track the [CHANGELOG](./CHANGELOG.md) before upgrading.

## Features

- 🔍 [**Semantic Search**](#4-search-your-content) — vectorize any collection for intelligent content discovery.
Expand Down
4 changes: 1 addition & 3 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,7 @@ export type RerankConfig = {
export type EmbeddingConfig = {
/** Version string to track embedding model/version - stored in each embedding document */
version: string
/** Embedding function for query provided by the user
* TODO(techiejd): Should be optional? Maybe if not provided then we can disable the search endpoint?
*/
/** Embedding function for query provided by the user */
queryFn: EmbedQueryFn
/** Embedding function for real-time ingestion of documents provided by the user
* If not provided, then there is no real-time ingestion of documents provided by the user
Expand Down
Loading