telys_get
Fetch exact rows by external ID from a collection, returning metadata and optional source text; unknown IDs return found:false rather than errors.
Instructions
Exact row lookup by external id — no similarity search. Returns one entry per requested id with a found flag plus stored metadata; for auto-indexed repo rows the exact source slice is re-read from disk via the row's path + line range. Use to fetch known rows or read the code behind a telys_repo_search hit. Required: collection, ids. Optional: with_metadata (default true) and with_text (default true; re-read the source slice for repo-index rows). Unknown ids come back as found:false, not an error; fails only when the collection does not exist.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ids | Yes | ||
| with_text | No | re-read the source slice for repo-index rows | |
| collection | Yes | ||
| with_metadata | No |