search_recent_documents
Find recently modified documents in RSpace by searching within a specific timeframe, with optional text filtering to locate relevant research data quickly.
Instructions
Search for recently modified documents
Usage: Find documents modified within a specific timeframe
Parameters:
days_back: Number of days to look back
query: Optional text search within recent documents
page_size: Number of results to return
Returns: Dictionary with recent documents
Example: search_recent_documents(7, "experiment")
Input Schema
Name | Required | Description | Default |
---|---|---|---|
days_back | No | ||
page_size | No | ||
query | No |
Input Schema (JSON Schema)
{
"properties": {
"days_back": {
"default": 7,
"title": "Days Back",
"type": "integer"
},
"page_size": {
"default": 20,
"title": "Page Size",
"type": "integer"
},
"query": {
"default": null,
"title": "Query",
"type": "string"
}
},
"type": "object"
}