You're viewing a demo portfolio

Join the waitlist
PRSM

fillin_query

Active

Tool of Fillin

declared in 1.27.0

Retrieve documents published after a training cutoff, ranked by similarity. Call this whenever the user asks about events, releases, papers, issues, or news that might post-date your training data. Fillin only returns documents published AFTER `cutoff`, so nothing returned is redundant with what the model already knows. Args: query: Natural-language search query (e.g. "rust async runtimes"). Max 512 characters. cutoff: ISO-8601 date representing the agent's training cutoff (e.g. "2026-01-01"). Documents on or before this date are excluded from results. k: Number of documents to retrieve, 1-20. Defaults to 5. Returns: A dict with: - cutoff: echoed cutoff (ISO timestamp) - query: echoed query - gap_days: days between cutoff and now - results: list of {id, source, url, published_at, title, text, score}

Parameters schema

{
  "type": "object",
  "title": "fillin_queryArguments",
  "required": [
    "query",
    "cutoff"
  ],
  "properties": {
    "k": {
      "type": "integer",
      "title": "K",
      "default": 5,
      "maximum": 20,
      "minimum": 1,
      "description": "Number of documents to retrieve (1-20)."
    },
    "query": {
      "type": "string",
      "title": "Query",
      "maxLength": 512,
      "minLength": 1,
      "description": "Natural-language search query, max 512 chars."
    },
    "cutoff": {
      "type": "string",
      "title": "Cutoff",
      "pattern": "^\\d{4}-\\d{2}-\\d{2}(T.*)?$",
      "description": "Training cutoff as ISO-8601 date (e.g. 2026-01-01). Documents on or before this date are excluded."
    }
  }
}

What this tool wraps· 0 endpoints

min confidence0.700.50

No endpoints wrapped at confidence ≥ 0.50.

Parent server

Fillin

1/7 registries
View full server →