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
1 change: 1 addition & 0 deletions conf/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ vectordb:
collection_name: vdb_test
hybrid_search: true
enable: true
schema_version: 1 # Increment when the collection schema changes and a migration is required

# --- Relational Database (PostgreSQL) ---
# Env: POSTGRES_HOST, POSTGRES_PORT, POSTGRES_USER, POSTGRES_PASSWORD, DEFAULT_FILE_QUOTA
Expand Down
12 changes: 12 additions & 0 deletions docs/content/docs/documentation/API.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,18 @@ Upload a new file to a specific partition for indexing.
- `201 Created`: Returns task status URL
- `409 Conflict`: File already exists in partition

##### Temporal Filtering
OpenRAG supports temporal filtering to retrieve documents from specific time periods.
The client can include the temporal field to allow temporal-aware search in search endpoints.

* `created_at`: ISO 8601 format date of when the file was created

:::info
`created_at` is provided by the client in the metadata of the file during upload.
This is a first iteration — additional temporal fields (e.g. `updated_at`) may be added in future releases as needed.
:::


##### Upload files while modeling relations between them

OpenRAG supports document relationships to enable context-aware retrieval.
Expand Down
126 changes: 0 additions & 126 deletions docs/content/docs/documentation/milvus_migration.md

This file was deleted.

Loading
Loading